getExecutions
Retrieve order execution details and fill information for specific trades placed through the TradeStation trading platform.
Instructions
Get fills/executions for a specific order
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | No | Account ID (optional, uses TRADESTATION_ACCOUNT_ID from env if not provided) | |
| orderId | Yes | Order ID |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "Account ID (optional, uses TRADESTATION_ACCOUNT_ID from env if not provided)",
"type": "string"
},
"orderId": {
"description": "Order ID",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}