ESSAY / NOTE

ccxt对接期货配置

binance_futures = ccxt.binance({'options': {
        'defaultType': 'future'  # exchange-specific option
    }})
# binance_futures.options['defaultType'] = 'future'
exchange = binance_futures
print(exchange.load_markets())
exit()