read_backtest_orders
Retrieve order data from a backtest by specifying project ID, backtest ID, and index range. Returns a dictionary with order details and total count for analysis.
Instructions
Read orders from a backtest.
Args: project_id: ID of the project containing the backtest backtest_id: ID of the backtest to read orders from start: Starting index of orders to fetch (default: 0) end: Last index of orders to fetch (default: 100, max range: 100)
Returns: Dictionary containing orders 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"
}