queryStrategyOrderList
Retrieve detailed execution info for all child orders created by a specific trading strategy. Use to monitor order status, analyze fill prices, or debug strategy failures.
Instructions
Retrieve a list of child orders created by a strategy with detailed execution information.
When to use:
View all orders spawned by a specific strategy
Check why a strategy order was rejected or canceled
Analyze execution prices and timing of strategy orders
Monitor real-time order status during strategy execution
Debug strategy execution issues
Order Status Values:
1: Created - Order placed but not yet filled
2: PartiallyFilled - Order partially executed
3: Filled - Order fully executed
4: Cancelled - Order was canceled
5: Rejected - Order rejected by exchange
Important notes:
strategyId is REQUIRED - must provide the parent strategy ID
Orders are sorted by creation time (newest first)
Use pagination for strategies with many orders
Maximum pageSize: 50, default: 20
Error codes in response indicate order rejection reasons
parentOrderId links replacement orders in chase strategies
Agent hint: Use this endpoint when user wants to see individual orders created by a strategy. Common queries: "show me the orders for strategy X", "why did my TWAP fail", "what prices did my iceberg orders fill at". Requires strategyId - if user doesn't provide it, ask them or query strategy list first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| strategyId | Yes | ||
| status | No | ||
| symbol | No | ||
| BeginTimeE0 | No | ||
| EndTimeE0 | No | ||
| pageSize | No | ||
| cursor | No | ||
| StrategyType | No |