nl-btcmarkets
v1.0.0
Published
BTC Markets node.js client
Downloads
2
Readme
BTC Markets NPM module
About
This is based off my ruby gem, but I'm trying to create a node.js trading engine
Examples
Get Order Book
// BTC and AUD
i.public({endpoint: '/market/BTC/AUD/orderbook'}, (cb) => {console.log(cb)});
// ETC and AUD
i.public({endpoint: '/market/ETC/AUD/orderbook'}, (cb) => {console.log(cb)});
Get Balances
i.private({endpoint: '/account/balance', method: 'GET', apikey: '', apisecret: ''}, (cb) => {console.log(cb);})