- Clone this repository.
- Create a fresh new API on Binance, with only read rights.
- In the config folder, edit the
api-keys.example.js
intoapi-keys.js
and put your new api key/secret. - From the root, run
yarn install
ornpm install
(one single time) - From the root, run
yarn start
ornpm start
Currently only Binance and Futures are supported.
-
Account: Fetching account information cost
5
weight -
Trades: The initial fetch cost
7 days * 8 chunks * 5 weight = 280 weight
. After the initial fetch, it will cost max8 chunks * 5 weight = 40 weight / minute
-
Income: The initial fetch cost
7 days * 3 chunks * 30 weight = 630 weight
. After the initial fetch, it will cost max3 chunks * 30 weight = 90 weight / minute
-
Total weight consumption: First load of the page
915 weight
, after that every minute your data is refreshed automatically and consumes135 weight / minute
. -
Reminder: Binance API allows you to consume up to
1200 weight / minute / IP
.