Get Strategy Orders History
Description
Based on: /docs/rest-api/get-history-strategies
Get historical trading orders for a specific WunderTrading strategy.
This returns past executed and related orders for a given strategy (profileStrategyId), such as entry orders, exits, and other trade actions.
Use to ask about:
- see past orders for a strategy
- review trade execution history
- analyze how a strategy performed
- inspect entries and exits of a specific trade
Prompt example
Show history of orders for profile strategy id3423422
Input Schema
The Input Schema Provided to LLM.
Required: profileStrategyId
{
"inputSchema": {
"type": "object",
"properties": {
"profileStrategyId": {
"type": "string",
"description": "ProfileStrategy ID used to fetch order history. Example: 69427bcc690d5f842315543d"
},
"page": {
"type": "integer",
"description": "Page number to fetch. Start with 1. If continuing pagination, use the next_page value from the previous response. Do NOT pass next_page directly."
},
"limit": {
"type": "integer",
"description": "Number of orders to return (1–100). Use smaller values for concise responses."
}
},
"required": [
"profileStrategyId"
],
"additionalProperties": false
}
}
We are continuously improving the platform, and new endpoints and features will be added soon to make your automated trading more flexible and efficient.