Releases: jaggedsoft/node-binance-api
Releases · jaggedsoft/node-binance-api
Stable Release
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
WebSocket stability improvements (Thanks keith1024!)
See #118
Stable Release
Finish implementing combined stream support. Hooray!
Thank you keith1024!!
Stable Release
Stop heartbeat of manually terminated sockets (Thanks keith1024)
WebSocket terminate() function disables reconnect
Can use setOption like follows:
api.setOption('reconnect', true);
Stable Release
Auto terminate zombie WebSockets & depthCache improvements
Thank you keith1024 and Tuitio!
Stable Release
The orderStatus function now supports newOrderRespType
Stable Release
Add use of combined WebSocket streams (Thanks keith1024!!)
Stable Release
Thanks etienne and MadDeveloper!
- prices() can return one specific symbol
now acceptsprices(symbol, callback)
or justprices(callback)
- WebSocket can handle unexpected error and will auto reconnect when this happens in the future
- historicalTrades accepts optional fromId parameter
- Ability to wrap console.log to create your own logging, or disable console output
Stable Release
Fix reconnect for websocket trades function, and candlesticks function
Stable Release
Fixed historicalTrades, recentTrades, aggTrades functions