I'm trying to place a limit order like this
client.place_order({"symbol":"DOGEUSD","clOrdID":"cryptomarauder1","side":Client.SIDE_BUY,"orderQty":10,"ordType":Client.ORDER_TYPE_LIMIT,"priceEp":3250,"takeProfitEp":0.2500,"stopLossEp":0.2000})
As you can see I specified Client.ORDER_TYPE_LIMIT, but the api places a Market order, not a Limit order.
I'm trying to place a limit order like this
client.place_order({"symbol":"DOGEUSD","clOrdID":"cryptomarauder1","side":Client.SIDE_BUY,"orderQty":10,"ordType":Client.ORDER_TYPE_LIMIT,"priceEp":3250,"takeProfitEp":0.2500,"stopLossEp":0.2000})As you can see I specified Client.ORDER_TYPE_LIMIT, but the api places a Market order, not a Limit order.