Skip to Content
Symmio Trading-SDK — the SDK surface for builders on HyperEVM
CoreTP/SLQuoteTpSlRow

QuoteTpSlRow

One conditional-order row as returned by getQuoteTpSl (GET /api/v5/?quote_id=…). Aliases the orval-generated ConditionalOrderResponseSchema. The row set contains every historical row for the quote, including terminated ones; React layers fold rows into per-side QuoteTpSl snapshots.

Fields

quote_idnumber

On-chain quote id the row belongs to.

coh_quote_idstring

Handler-issued conditional-order id (e.g. "coh4213").

party_a_addressstring

PartyA (VA) address that owns the quote.

symbol_idnumber

Solver market id.

conditional_order_type"take_profit" | "stop_loss" | "send_quote"

Which kind of conditional order (QuoteTpSlConditionalOrderType).

quantitynumber

Order quantity.

conditional_order_pricenumber

The trigger price.

pricenumber | nulloptional

The slippage-shifted fill price.

order_type0 | 1

Wire order type (1 = market).

state"pending" | "new" | "triggered" | "triggered_pending" | "canceled" | "killed"

Row lifecycle state (QuoteTpSlRowState).

action_price_type"market" | "last_close"

Whether the trigger trips on the mark or last-close price (QuoteTpSlActionPriceType).

position_type0 | 1

Quote direction — 0 = long, 1 = short.

close_statusstring | nulloptional

Handler close status, when present.

leveragenumber | string | nulloptional

Leverage stamped on the order, when present.

create_timenumber

Creation timestamp.

modify_timenumber

Last-modification timestamp.

The companion string types QuoteTpSlRowState, QuoteTpSlActionPriceType, and QuoteTpSlConditionalOrderType are re-exported alongside this row for typing individual fields.

  • getQuoteTpSl — returns QuoteTpSlRow[].
  • QuoteTpSl — the folded per-side snapshot React layers derive from these rows.
Last updated on