Skip to main content
Glama

QuantConnect MCP Server

read_backtest_chart

Retrieve and analyze chart data from specific backtests on QuantConnect. Use the tool to access historical performance metrics, set time ranges, and extract key insights for strategy evaluation.

Instructions

Read chart data from a backtest.

Args: project_id: Project ID containing the backtest backtest_id: ID of the backtest to get chart from name: Name of the chart to retrieve (e.g., "Strategy Equity") count: Number of data points to request (default: 100) start: Optional UTC start timestamp in seconds end: Optional UTC end timestamp in seconds

Returns: Dictionary containing chart data or loading status

Input Schema

NameRequiredDescriptionDefault
backtest_idYes
countNo
endNo
nameYes
project_idYes
startNo

Input Schema (JSON Schema)

{ "properties": { "backtest_id": { "title": "Backtest Id", "type": "string" }, "count": { "default": 100, "title": "Count", "type": "integer" }, "end": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "End" }, "name": { "title": "Name", "type": "string" }, "project_id": { "title": "Project Id", "type": "integer" }, "start": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Start" } }, "required": [ "project_id", "backtest_id", "name" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/taylorwilsdon/quantconnect-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server