How do I print the response from an order like below?
order = client.order_limit_buy(
symbol='ADABUSD',
quantity=buy_quantity,
price=price,
newOrderRespType = 'ACK'
)
I wish to get the orderId from it so I can check its status...
Thanks in advance