arena_run_grid_backtest
ActiveTool of Backtesting Arena
Grid-bot simulation on historical candles. Returns final value, return%, CAGR, trades, fees, buy-hold comparison. Free tier limited to BTCUSDT/ETHUSDT. Per-day quota: Free=5, Pro=50, Power=500. [Free / Pro / Power tier]
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"pair",
"start_date",
"end_date",
"total_investment",
"low_price",
"high_price",
"grid_count",
"grid_type",
"fee_rate",
"context"
],
"properties": {
"pair": {
"type": "string",
"minLength": 1
},
"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.\""
},
"end_date": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"fee_rate": {
"type": "number",
"maximum": 0.01,
"minimum": 0,
"description": "Per-trade fee fraction, e.g. 0.001 for 0.1%."
},
"grid_type": {
"enum": [
"arithmetic",
"geometric"
],
"type": "string"
},
"low_price": {
"type": "number",
"exclusiveMinimum": 0
},
"grid_count": {
"type": "integer",
"maximum": 200,
"minimum": 2
},
"high_price": {
"type": "number",
"exclusiveMinimum": 0
},
"start_date": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"entry_price": {
"type": "number",
"exclusiveMinimum": 0
},
"stop_loss_price": {
"type": "number",
"exclusiveMinimum": 0
},
"total_investment": {
"type": "number",
"description": "USDT amount; min 100.",
"exclusiveMinimum": 0
},
"take_profit_price": {
"type": "number",
"exclusiveMinimum": 0
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Backtesting Arena
https://github.com/Schoasch/skill-backtesting-arena
2/7 registries