Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GuntharDeNiro/8d1b157dcb69cdb861facc352a7de1b9 to your computer and use it in GitHub Desktop.
Save GuntharDeNiro/8d1b157dcb69cdb861facc352a7de1b9 to your computer and use it in GitHub Desktop.
//require ./ctx-wrapper.js
let ctxWrapper = require('./ctx-wrapper');
//then wrap the following promise in a function
new ctxWrapper(exchange, exchangeConfig)
.ohlc(parseFloat(CANDLES_LENGTH), parseFloat(PERIOD), pair)
.then((candles) => {
//do your own things with candles
})
.catch((e) => {
console.log(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment