List conditional orders
tossinvest_list_conditional_ordersList all price-triggered conditional orders on your account, including orders placed in the Toss Securities app. Filter by open/closed status and symbol to review active or expired orders.
Instructions
List the account's conditional (price-triggered) orders.
This returns conditional orders from every channel, including ones set up in the Toss Securities app — not just those created through this API.
Args:
status ('OPEN' | 'CLOSED'): OPEN covers WATCHING, PAUSED, ORDERING and ORDERED. CLOSED covers COMPLETED and EXPIRED.
symbol (string, optional): restrict to one symbol.
cursor (string, optional): pagination cursor from a previous nextCursor.
limit (number): 1-100, default 20.
account_seq (number, optional): resolved automatically for single-account credentials.
response_format ('markdown' | 'json'): default 'markdown'.
Returns { accountSeq, status, count, conditionalOrders: [{ conditionalOrderId, type, status, symbol, market, quantity, orderType, expireDate, createdAt, first, second }], nextCursor, hasNext }. type is SINGLE, OCO or OTO; there is no server-side type filter, so filter on this field yourself. Each condition leg carries { type, status, triggerPrice, targetProfitRate, orderPrice, triggeredOrderId }; triggeredOrderId links to the real order created on trigger, which you can then read with tossinvest_get_order.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size (max 100). | |
| cursor | No | Pagination cursor from a previous nextCursor. | |
| status | Yes | 'OPEN' for active conditional orders, 'CLOSED' for completed or expired ones. | |
| symbol | No | Restrict to one symbol. Omit for all. | |
| account_seq | No | accountSeq of the account to act on (the `X-Tossinvest-Account` header). Optional: falls back to TOSSINVEST_ACCOUNT_SEQ, then to the sole account on the credentials. Get valid values from tossinvest_list_accounts. | |
| response_format | No | Output format: 'markdown' for a compact human-readable summary, 'json' for the complete raw payload. | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| status | Yes | ||
| hasNext | No | ||
| truncated | No | ||
| accountSeq | Yes | ||
| nextCursor | No | ||
| conditionalOrders | Yes | ||
| truncation_message | No |