Place Market 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. 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
MARKET
quantity
FLOAT
Yes
Quantity (denominated by contractValCurrency), not required if an amount
is provided
amount
STRING
NO
An amount of USDT can be specified instead of a quantity. Only valid for spot market buy orders
side
STRING
Yes
BUY
or SELL
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