Open Order

Open Orders, provided as incremental updates

Order event update message.

Order Side

  • BUY: Buy
  • SELL: Sell

Order Type

  • LIMIT: Limit order
  • MARKET: Market order
  • LIMIT_MAKER: Maker order
  • CONDITIONAL_LIMIT: Conditional limit order
  • CONDITIONAL_MARKET: Conditional market order
  • STOP_LOSS: Stop-loss market order
  • STOP_LOSS_LIMIT: Stop-loss limit order
  • TAKE_PROFIT: Take-profit market order
  • TAKE_PROFIT_LIMIT: Take-profit limit order

Time in Force

  • GTC
  • IOC
  • FOK
  • POST_ONLY

Order Status

  • NEW: The order has entered matching and has been placed on the book.
  • PARTIALLY_FILLED: Partially filled.
  • FILLED: Fully filled.
  • PARTIALLY_CANCELED: Partially canceled due to self-trade prevention.
  • CANCELED: The order was canceled by the user.
  • EXPIRED: The order was canceled according to order-type rules, for example an unfilled LIMIT FOK order, a LIMIT IOC order, or a partially filled MARKET order.

Response Example

sequenceNum is an incremental sequence number.

{
  "eventType": "order_trade",
  "eventTime": 1778663008208,
  "tradingTime": 1778663008191,
  "action": "update",
  "orderUpdateEvent": {
    "symbol": "ETHUSDC",
    "clientOrderId": "bad04164-b5e8-4b5b-a814-f92fed830ddc",
    "orderSide": "SELL",
    "orderType": "LIMIT",
    // Time in force: GTC (normal limit order, valid until canceled),
    // FOK (fully fill immediately or cancel),
    // IOC (fill immediately and cancel the remainder),
    // POST_ONLY (maker-only order),
    // UNRECOGNIZED (invalid)
    "timeInForce": "GTC",
    // Order quantity
    "quantity": "0.00400000",
    // Order price
    "price": "2400.00000000",
    // Trigger price for take-profit / stop-loss order
    "triggerPrice": "0.00000000",
    // Specific execution type for this event: TRADE, NEW, CANCELED, EXPIRED, CANCELED
    "execType": "NEW",
    // Current order status: NEW, PARTIALLY_FILLED, FILLED, PARTIALLY_CANCELED, CANCELED, EXPIRED, REJECTED, UNRECOGNIZED
    "status": "NEW",
    "orderId": "2213980212327528704",
    // Last filled quantity
    "lastQty": "",
    // Last filled price
    "lastPrice": "",
    // Cumulative filled quantity
    "cumFilledQty": "0.00000000",
    "commissionAsset": "USDC",
    "commissionAmount": "",
    "tradeTime": 1778663008191,
    "tradeId": "0",
    // Whether this trade was executed as maker
    "isMaker": false,
    // Whether this is a reduce-only order
    "reduceOnly": false,
    // Position side: BOTH, LONG, SHORT
    "positionSide": "BOTH",
    // Trigger price type: LAST_PRICE, MARK_PRICE
    "triggerPriceType": "LAST_PRICE",
    // Original order type
    "originalType": "LIMIT",
    // Whether this is a triggered close-position order
    // This field is only pushed for conditional order
    "triggerCloseOrder": false,
    // Self-trade prevention mode
    "selfTransaction": "CO",
    "sequenceNum": 4730900274
  }
}