Get Futures Asset Balance Binance

I tried searching for answers, but to no avail. How do I get the balance of specific asset for a Futures Asset, for example, USDT? [{‘accountAlias’: ‘xx’, ‘asset’: ‘DOT’, ‘balance’: ‘0.00000000’, ‘withdrawAvailable’: ‘0.00000000’, ‘updateTime’: 0}, {‘accountAlias’: ‘xx’, ‘asset’: ‘BTC’, ‘balance’: ‘0.00000000’, ‘withdrawAvailable’: ‘0.00000000’, ‘updateTime’: 0}, {‘accountAlias’: ‘xx’, ‘asset’: ‘SOL’, ‘balance’: ‘0.00000000’, ‘withdrawAvailable’: ‘0.00000000’, ‘updateTime’: 0},… Read More Get Futures Asset Balance Binance

Python Binance API Function Data Pull

I am trying to write a function that will pull ticker information from Binance and put into a nice chart. I am using pandas and keep getting this error: pandas.core.indexing.IndexingError: Too many indexers Below is a portion of the code: enter image description here def getminutedata(symbol, interval, lookback): frame = pd.DataFrame(client.get_historical_klines(symbol, interval, lookback + ‘min… Read More Python Binance API Function Data Pull