Skip to content
This repository was archived by the owner on Feb 12, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ which produced profit in a certain period of time specified by the input OHLC da
Running the source
---------------

First if you don't have it yet. Install node-gyp for comiling the c++ source code;
First if you don't have it yet. Install node-gyp for compiling the c++ source code;

```
npm install -g node-gyp
Expand All @@ -25,7 +25,7 @@ npm install
To do further builds you can use

```
node-gyp build
node-gyp configure && node-gyp build
```

You can run embedded examples which are located in the examples folder
Expand Down
4 changes: 2 additions & 2 deletions include/BinaryTreeChromosome.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class BinaryTreeChromosome
{

private:

/**
* A vector of pointers to indicators used for further data evaluation
*/
Expand Down Expand Up @@ -130,5 +130,5 @@ class BinaryTreeChromosome
const v8::Local<v8::Object>& input);


void ToJs(v8::Handle<v8::Object>& input) const;
void ToJs(v8::Local<v8::Object>& input) const;
};
2 changes: 1 addition & 1 deletion include/indicators/factories/IndicatorFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static std::vector<BaseIndicator *> CreateAll();
/**
* Returns a vector containing indicators based on teh names passed in the v8 array
*/
static std::vector<BaseIndicator *> CreateFromArray(v8::Handle<v8::Array> array);
static std::vector<BaseIndicator *> CreateFromArray(v8::Local<v8::Array> array);

/**
* Registers an indicator factory method used for creating new indicators
Expand Down
Loading