get_order_status
Retrieve the current status of a specific order using the order ID through the Interactive Brokers MCP Server, designed for efficient account interaction and order tracking.
Instructions
Get the status of a specific order
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | Order ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderId": {
"description": "Order ID",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}