I am getting the following error
binance.error.ClientError: (400, -1121, 'Invalid symbol.', {'Content-Type': 'application/json'....
when using this code
from binance.cm_futures import CMFutures
cm_futures_client = CMFutures()
print(cm_futures_client.time())
cm_futures_client = CMFutures(key='XXXX', secret='YYYY')
# Get account information
print(cm_futures_client.account())
# Post a new order
params = {
'symbol': 'BTCUSDT',
'side': 'SELL',
'type': 'LIMIT',
'timeInForce': 'GTC',
'quantity': 0.002,
'price': 59808
}
response = cm_futures_client.new_order(**params)
print(response)
This is very odd, I am using python connector