0

I've been working on creating a trading bot for KuCoin using API's recently and have been getting into some small roadblocks. I overcame all except one which is an error code "400600" I've looked everywhere and can't even find a website or conversation mentioning this error message. I looked around lots of discussions and websites for my other issues and that worked but for this one, I can't find any documentation about it. The full error is

200-{"code":"400600","msg":"validation.createOrder.symbolNotAvailable"}

The symbol I'm using is 'XRP-USDT' which works for getting the price with the API's and is exactly how I've seen it in others code and bots.

this is the order part of my code.

if True:
    try:
        order = client.create_market_order('XRP-USDT', 'buy' , 'market', size='3')
        buy_XRP = m_client.get_ticker('XRP-USDT')
        print()
    except Exception as e:
        print(f'Error placing order: {e}')

(if True is just a way to test it without having to wait for my buy limitations to be met)

starball
  • 20,030
  • 7
  • 43
  • 238
loserpcs
  • 1
  • 1

0 Answers0