Place Stop Market Order
Stop market orders are only available in Perp Markets
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. OrderOpened, OrderMatched etc......).
Request Parameters
op
STRING
Yes
placeorder
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
clientOrderId
ULONG
No
Client assigned ID to help manage and identify orders with max value 9223372036854775807
marketCode
STRING
Yes
Market code e.g. BTC-USD-SWAP-LIN
orderType
STRING
Yes
STOP_MARKET
quantity
FLOAT
Yes
Quantity (denominated by contractValCurrency)
side
STRING
Yes
BUY
or SELL
stopPrice
FLOAT
Yes
Stop price for the stop-market order.
Triggered by the best bid price for the SELL stop-market order.
Triggered by the best ask price for the BUY stop-market order.
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.
selfTradePreventionMode
STRING
No
NONE
, EXPIRE_MAKER
, EXPIRE_TAKER
, EXPIRE_BOTH
Last updated