Skip to content

Releases: ccxt/node-binance-api

Stable Release

30 Jan 08:30
9f7036a

Choose a tag to compare

Fix reconnect for websocket trades function, and candlesticks function

Stable Release

25 Jan 09:01
734501c

Choose a tag to compare

Fixed historicalTrades, recentTrades, aggTrades functions

Stable Release

21 Jan 00:14
f4bca67

Choose a tag to compare

Added time() and useServerTime options

  1. You can now use the useServerTime option to synchronize with the servers time at startup
  2. You can now pass a callback function to options() which runs after the synchronization is complete
binance.options({
	APIKEY: '<key>',
	APISECRET: '<secret>',
	useServerTime: true
}, main);

function main() {
	binance.balance((error, balances) => {
		if ( error ) {
			console.error(error);
			return;
		}
		console.log("balances()", balances);
		console.log("BNB balance: ", balances.BNB.available);
	});
}

Stable Release

19 Jan 20:08
f94c2fd

Choose a tag to compare

Update endpoints, fix allPrices websocket

Stable Release

19 Jan 01:16
b5bb192

Choose a tag to compare

Fix error handling on order()

Stable Release

18 Jan 07:20
6477b14

Choose a tag to compare

Fixed user data streams, order()

(Breaking:) Improved error handling, thanks hems and robaleman!

18 Jan 06:27
b30399d

Choose a tag to compare

Stable Release

15 Jan 12:07
2433bdd

Choose a tag to compare

Added optional params to get candlestick data

Stable Release

12 Jan 02:10
34f63ec

Choose a tag to compare

Remove breaking changes, preparing for v0.4.0

Stable Release

11 Jan 05:37
1e25f09

Choose a tag to compare

Fixed syntax error