sammchardy / python-binance

Binance Exchange API python implementation for automated trading
https://python-binance.readthedocs.io/en/latest/
MIT License
5.91k stars 2.19k forks source link

How do I know whether the volume gotten from "(futures(get)_historical_klines" is divided by 1M or not? #1272

Open wanga10000 opened 1 year ago

wanga10000 commented 1 year ago

klines_SHIBUSDT = client.futures_historical_klines('1000SHIBUSDT', '1d', "2017-01-01 00:00:00") klines_BTCUSDT = client.futures_historical_klines('BTCUSDT', '1d', "2017-01-01 00:00:00")

The volume of SHIBUSDT is more than BTCUSDT cause it is not divided by 1M. How do I know that? Thanks