key | type | description |
---|---|---|
id | string | uniqe id |
pair | string | order's trading pair which is format by {BASE}_{QUOTE} |
avgExecutionPrice | string | the average execution price of the order. The order remains untraded, signified by a zero-average execution price. |
action | string | BUY or SELL |
type | string | order type LIMIT or MARKET or STOP_LIMIT , refer to order type |
status | int | order status, refer to order status |
originalAmount | string | original order amount at the time of placement. |
remainingAmount | string | remaining order amount. |
executedAmount | string | executed order amount. |
fee | string | amount of transaction fees. |
feeSymbol | string | currency of transaction fees. |
bitoFee | string | amount of transaction fees paid on BITO |
total | string | total order transaction value. |
seq | string | order sequnence number |
stopPrice | string | trigger price for a stop-limit order. |
condition | string | price trigger condition for a stop-limit order. |
timeInForce | string | the time in force for an order defines the length of time over which an order will continue working before it is canceled. refer to tif explanation |
createdTimestamp | string | order creation time in msec unit. |
updatedTimestamp | string | order updated time in msec unit. |
-1
: Not Triggered0
: In progress1
: In progress (Partial deal)2
: Completed3
: Completed (Partial deal)4
: Cancelled6
: Post-only Cancelled
LIMIT
: limit price order.STOP_LIMIT
: limit price order with trigger price and trigger condition.MARKET
: market order.SP_OCO_STOPLIMIT
: take-profit order is a combination of a stop-loss order with OCO (One Cancels the Other) properties, which only allows placing orders from the web interface.SL_OCO_STOPLIMIT
: stop-loss order is a combination of a stop-loss order with OCO (One Cancels the Other) properties, which only allows placing orders from the web interface.