getOrderDetails
Retrieve comprehensive order information including status, execution details, and account data for TradeStation trading activities using specific order identifiers.
Instructions
Get detailed information 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"
}