Skip to content

Instantly share code, notes, and snippets.

View troyscott's full-sized avatar

Troy Scott troyscott

View GitHub Profile
@troyscott
troyscott / binance-candlestick.js
Last active December 21, 2017 06:23
Binance API Example using Node.
const Promise = require('promise');
const binance = require('node-binance-api');
const jsonfile = require('jsonfile');
binance.options({
'APIKEY':'xxxxxx',
'APISECRET':'xxxxx'
});
// Binance Candlestick Promise
// Sample grunt-jekyll grunt.js file
// https://github.com/dannygarcia/grunt-jekyll
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jekyll: {