read_backtest
Retrieve backtest results and statistics for a specific project and backtest ID. Include optional chart data to analyze performance and outcomes effectively within QuantConnect MCP Server.
Instructions
Read backtest results and statistics from a project.
Args: project_id: ID of the project containing the backtest backtest_id: ID of the specific backtest to read chart: Optional chart name to include chart data in response
Returns: Dictionary containing backtest results, statistics, and optional chart data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backtest_id | Yes | ||
chart | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"backtest_id": {
"title": "Backtest Id",
"type": "string"
},
"chart": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Chart"
},
"project_id": {
"title": "Project Id",
"type": "integer"
}
},
"required": [
"project_id",
"backtest_id"
],
"type": "object"
}