How can I place a market order in ccxt for binance futures? Trading on binance futures with ccxt is already implemented
https://github.com/ccxt/ccxt/pull/5907
In this post they suggest to use this line of code:
let binance_futures = new ccxt.binance({ options: { defaultMarket: 'futures' } })
The above line was written in JavaScript. How would the equivalent line in python look like? Like this I get an error:
binance_futures = ccxt.binance({ 'option': { defaultMarket: 'futures' } })
NameError: name 'defaultMarket' is not defined