queryStrategyList
Retrieve and filter trading strategies by status, symbol, type, or time range using pagination for efficient review and monitoring.
Instructions
Retrieve a list of strategies with filtering options and pagination support.
When to use:
Check status of specific strategy by strategyId
Monitor all running strategies
Review completed strategies for performance analysis
Filter strategies by symbol, type, or time period
Query modes:
Exact lookup: Provide strategyId to get specific strategy details
Filtered list: Use symbol, category, strategyType, status filters
Time range: Use beginTimeE0 and endTimeE0 for date range queries
Paginated: Use cursor and pageSize for large result sets
Strategy Status Values:
2: Running - Strategy is actively executing
3/4: Terminated - Strategy has stopped (check terminateType for reason)
5: Paused - Strategy is temporarily paused
6: Untriggered - Conditional strategy waiting for trigger price
Important notes:
Strategies are sorted by creation time (newest first)
Use cursor for pagination (nextCursor in response)
Maximum pageSize: 50
Default pageSize: 20
Time filters use Unix timestamp in seconds
Agent hint: Use this endpoint when user asks about their strategies, wants to check strategy status, or needs to review strategy performance. Common queries: "show my strategies", "check TWAP strategy status", "what strategies are running on BTCUSDT".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| strategyId | No | ||
| status | No | ||
| symbol | No | ||
| category | No | ||
| strategyType | No | ||
| beginTimeE0 | No | ||
| endTimeE0 | No | ||
| pageSize | No | ||
| cursor | No |