Skip to content

Tags: Algorithmic-Trading/node-binance-api

Tags

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

v0.8.1

Toggle v0.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Several improvements from bmino. Thanks!

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

v0.7.1

Toggle v0.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Singleton VS New Object

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
(BREAKING) Singleton VS New Object. Thanks usama33!

⚠ Breaking Changes: ⚠

🔧 Singleton VS New Object: (Thanks usama33!)
	The API is now instantiated like this:
```js
const binance = new Binance().options({
	APIKEY: "",
	APISECRET: "",
	useServerTime: true
});
```

or this:

```js
const Binance = require('node-binance-api');
const binance = new Binance().options("options.json");
```

🔧 default recvWindow changed to 5000 as recommended by Binance

🔧 lastEventUpdateTime added to the response of depthCache callback, as third parameter. Thanks yanislk!