arena_run_universe_backtest
ActiveTool of Backtesting Arena
Backtests one strategy on up to 50 pairs at once. Returns immediately with a job_id; poll arena_get_job_status to check progress. Provide either universe_id (e.g. 'crypto-top-10') OR explicit pairs[]. Background runtime: ~1.5s × n_pairs. Per-day quota: Pro=5, Power=50. [API Pro tier]
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"strategy",
"interval",
"date_from",
"context"
],
"properties": {
"pairs": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 50,
"description": "Explicit pair list (max 50). Use instead of universe_id."
},
"params": {
"type": "object",
"additionalProperties": {}
},
"capital": {
"type": "number",
"exclusiveMinimum": 0
},
"context": {
"type": "string",
"description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
},
"date_to": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"filters": {
"type": "object",
"properties": {
"wma200": {
"type": "boolean",
"description": "200-week MA filter (BTC-derived)."
},
"atrMode": {
"enum": [
"off",
"low",
"high",
"expansion"
],
"type": "string"
},
"altcoinSeasonMode": {
"enum": [
"off",
"aggressive",
"conservative"
],
"type": "string"
},
"bullmarketStageMode": {
"enum": [
"off",
"early",
"confirmed",
"strict"
],
"type": "string"
},
"minProfitGuardThreshold": {
"type": "number",
"description": "Per-trade min profit guard (negative cap, e.g. -10)."
}
},
"additionalProperties": false
},
"interval": {
"enum": [
"1d",
"1w",
"1M"
],
"type": "string"
},
"strategy": {
"type": "string",
"minLength": 1,
"description": "Strategy key — call arena_list_strategies."
},
"date_from": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"universe_id": {
"type": "string",
"description": "Pre-curated universe — call arena_list_universes for valid IDs. Max 50 pairs."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Backtesting Arena
https://github.com/Schoasch/skill-backtesting-arena
2/7 registries