client.modify_order(
symbol=symbol,
orderId=order_id,
side="BUY",
quantity="1",
priceMatch="QUEUE",
)
TypeError: modify_order() missing 1 required positional argument: 'price'
but if i pass through price, it prints ClientError: (400, -1106, "Parameter 'price' sent when not required.",
client.modify_order(
symbol=symbol,
orderId=order_id,
side="BUY",
quantity="1",
priceMatch="QUEUE",
)
TypeError: modify_order() missing 1 required positional argument: 'price'
but if i pass through price, it prints ClientError: (400, -1106, "Parameter 'price' sent when not required.",