Export Strategies History (MCP Tool)
Description
Based on: /docs/rest-api/get-strategies-history
Get export of historical trading strategies from WunderTrading (last 3 months only).
Warning
Returns a download url to get JSON file with exported strategies within the last 3 months.
Use to ask about:
- full trading history export
- complete strategy analysis
- analysis across all strategies
- exporting all strategies
- exact dataset analysis
- deep performance analysis
Supports filtering by:
- exchanges (exchange codes like BINANCE, BINANCE_DELIVERY, OKEX, BYBIT)
- apiProfiles (specific API profile IDs)
- statuses (new, entered, completed, canceled, cancelling, panic exited, panic exiting, unlinked, failed)
Prompt example
Export my strategies history for further analytics
Prompt example
Show my total profit and loss for 3 month on Binance
Input Schema
The Input Schema Provided to LLM.
{
"inputSchema": {
"type": "object",
"properties": {
"exchanges": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional array of exchange codes (e.g. ['BINANCE','BINANCE_FUTURES','BYBIT']). If omitted, all exchanges will be included."
},
"apiProfiles": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional array of API profile IDs / codes. If omitted, all API profiles will be included."
},
"statuses": {
"type": "array",
"items": {
"type": "string",
"enum": [
"new",
"entered",
"completed",
"canceled",
"cancelling",
"panic_exited",
"panic_exiting",
"unlinked",
"failed"
]
},
"description": "Optional array of statuses to filter by. Example: ['completed']. If omitted, all statuses will be included."
}
},
"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.