Modify Order
Requires an authenticated websocket connection. Please also subscribe to the User Order Channel to receive push notifications for all message updates in relation to an account or sub-account (e.g. OrderModified etc......).
One account can only place up to 50 orders per second via websocket.
Currently only LIMIT orders are supported by the modify order command.
The price and/or quantity of an order can be modified.
Reducing the quantity will leave the modified orders position in the order queue unchanged.
Increasing the quantity will always move the modified order to the back of the order queue.
Modifying the price will always move the modified order to the back of the order queue.
Modified orders retain their original orderId.
Request Parameters
op
STRING
Yes
modifyorder
tag
INTEGER or STRING
No
If given it will be echoed in the reply and the max size of tag
is 32
data
DICTIONARY object
Yes
marketCode
STRING
Yes
Market code e.g. BTC-USD-SWAP-LIN
orderId
INTEGER
Yes
Unique order ID from the exchange
side
STRING
No
BUY
or SELL
price
FLOAT
No
Price for limit orders
quantity
FLOAT
No
Quantity (denominated by contractValCurrency
)
timestamp
LONG
No
In milliseconds. If an order reaches the matching engine and the current timestamp exceeds timestamp + recvWindow, then the order will be rejected. If timestamp is provided without recvWindow, then a default recvWindow of 1000ms is used. If recvWindow is provided with no timestamp, then the request will not be rejected. If neither timestamp nor recvWindow are provided, then the request will not be rejected.
recvWindow
LONG
No
In milliseconds. If an order reaches the matching engine and the current timestamp exceeds timestamp + recvWindow, then the order will be rejected. If timestamp is provided without recvWindow, then a default recvWindow of 1000ms is used. If recvWindow is provided with no timestamp, then the request will not be rejected. If neither timestamp nor recvWindow are provided, then the request will not be rejected.
Last updated