Skip to content

Releases: jaggedsoft/node-binance-api

Stable Release

11 Feb 00:52
9cb3029
Compare
Choose a tag to compare

allOrders supports additional parameters (Thanks grandmore!)

Get the very last order for a symbol

binance.allOrders("BNBBTC", (error, orders, symbol) => {
  console.log(symbol+" orders:", orders);
}, {limit:1});

Stable Release

08 Feb 21:24
c827fe0
Compare
Choose a tag to compare

WebSocket stability improvements (Thanks keith1024!)
See #118

Stable Release

06 Feb 19:03
e651dae
Compare
Choose a tag to compare

Finish implementing combined stream support. Hooray!
Thank you keith1024!!

Stable Release

05 Feb 22:45
df8e8a1
Compare
Choose a tag to compare

Stop heartbeat of manually terminated sockets (Thanks keith1024)
WebSocket terminate() function disables reconnect
Can use setOption like follows:
api.setOption('reconnect', true);

Stable Release

04 Feb 22:34
c05ad13
Compare
Choose a tag to compare

Auto terminate zombie WebSockets & depthCache improvements
Thank you keith1024 and Tuitio!

Stable Release

03 Feb 21:22
8d88e13
Compare
Choose a tag to compare

The orderStatus function now supports newOrderRespType

Stable Release

03 Feb 19:16
26d1e54
Compare
Choose a tag to compare

Add use of combined WebSocket streams (Thanks keith1024!!)

Stable Release

01 Feb 23:08
f0faef7
Compare
Choose a tag to compare

Thanks etienne and MadDeveloper!

  1. prices() can return one specific symbol
    now accepts prices(symbol, callback) or just prices(callback)
  2. WebSocket can handle unexpected error and will auto reconnect when this happens in the future
  3. historicalTrades accepts optional fromId parameter
  4. Ability to wrap console.log to create your own logging, or disable console output

Stable Release

30 Jan 08:30
9f7036a
Compare
Choose a tag to compare

Fix reconnect for websocket trades function, and candlesticks function

Stable Release

25 Jan 09:01
734501c
Compare
Choose a tag to compare

Fixed historicalTrades, recentTrades, aggTrades functions