File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
//
2
- // Small wrapper that only propogates new trades.
2
+ // Small wrapper that only propagates new trades.
3
3
//
4
4
// Expects trade batches to be written like:
5
5
// [
Original file line number Diff line number Diff line change 1
1
// a leech market is "semi-realtime" and pulls out candles of a
2
- // database (which is expected to be updated reguraly , like with a
3
- // realtime market running in parralel ).
2
+ // database (which is expected to be updated regularly , like with a
3
+ // realtime market running in parallel ).
4
4
5
5
const _ = require ( 'lodash' ) ;
6
6
const moment = require ( 'moment' ) ;
Original file line number Diff line number Diff line change 1
1
var semver = require ( "semver" ) ;
2
2
var _ = require ( 'lodash' ) ;
3
3
4
- // validate that talib is installed, if not we'll throw an excepion which will
4
+ // validate that talib is installed, if not we'll throw an exception which will
5
5
// prevent further loading or out outside this module
6
6
try {
7
7
var talib = require ( "talib" ) ;
Original file line number Diff line number Diff line change 1
1
var semver = require ( "semver" ) ;
2
2
var _ = require ( 'lodash' ) ;
3
3
4
- // validate that talib is installed, if not we'll throw an excepion which will
4
+ // validate that talib is installed, if not we'll throw an exception which will
5
5
// prevent further loading or out outside this module
6
6
try {
7
7
var tulind = require ( "tulind" ) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ var Reader = function() {
13
13
this . db = handle ;
14
14
}
15
15
16
- // returns the furtherst point (up to `from`) in time we have valid data from
16
+ // returns the furthest point (up to `from`) in time we have valid data from
17
17
Reader . prototype . mostRecentWindow = function ( from , to , next ) {
18
18
to = to . unix ( ) ;
19
19
from = from . unix ( ) ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Lineair regression curve
2
+ * Linear regression curve
3
3
*/
4
4
var log = require ( '../../core/log' ) ;
5
5
You can’t perform that action at this time.
0 commit comments