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