read_backtest_insights
Extract and analyze insights from a backtest by specifying project and backtest IDs, with customizable index ranges for targeted data retrieval.
Instructions
Read insights from a backtest.
Args: project_id: ID of the project containing the backtest backtest_id: ID of the backtest to read insights from start: Starting index of insights to fetch (default: 0) end: Last index of insights to fetch (default: 100, max range: 100)
Returns: Dictionary containing insights data and total count
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backtest_id | Yes | ||
end | No | ||
project_id | Yes | ||
start | No |
Input Schema (JSON Schema)
{
"properties": {
"backtest_id": {
"title": "Backtest Id",
"type": "string"
},
"end": {
"default": 100,
"title": "End",
"type": "integer"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"start": {
"default": 0,
"title": "Start",
"type": "integer"
}
},
"required": [
"project_id",
"backtest_id"
],
"type": "object"
}