get_market_data
Retrieve real-time market data for a specified trading symbol using the Interactive Brokers MCP Server. Input a symbol (e.g., AAPL, TSLA) and optional exchange to access up-to-date financial information.
Instructions
Get real-time market data for a symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | Exchange (optional) | |
symbol | Yes | Trading symbol (e.g., AAPL, TSLA) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchange": {
"description": "Exchange (optional)",
"type": "string"
},
"symbol": {
"description": "Trading symbol (e.g., AAPL, TSLA)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}