"tradeType": "market"
. For limit orders, please see here.Field | Limit Order Value | Market Order Value |
---|---|---|
tradeType | limit | market |
postOnly | true or false | Not supported |
maxSlippage | Not supported | 0 - 1 inclusive |
price | Strict price | Expected price |
maxSlippage
is not specified, it will default to 0.02
.
price
field in the payload represents the expected price for the order. The actual fill price may differ due to market conditions, but is constrained by the maxSlippage
parameter.
expectedPrice × (1 + maxSlippage)
.expectedPrice × (1 - maxSlippage)
.filledQuantity
and avgFillPrice
fields if the order was partially filled.
If your market order is fully filled, you will receive a completeFillOrder
notification, as described in Order Filled Notifications.
maxSlippage
of 0
.