how to get list of all symbols max quantity for placing futures order in one time
symbol = “BTCUSDT”
get_exchange_info = client.futures_exchange_info()
exchange_info_symbols = get_exchange_info[‘symbols’]
for data_symbols in exchange_info_symbols:
print(f"{data_symbols}")