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 |