etrade_get_quote
Retrieve real-time stock quotes and market data for specified symbols using E*TRADE's Market API, including price, volume, bid/ask spreads, and optional earnings dates.
Instructions
Get stock quote for one or more symbols.
Args: symbols: Comma-separated list of stock symbols (e.g., "AAPL", "MSFT,GOOGL") require_earnings_date: If true, return next earnings date skip_mini_options_check: If true, skip check for mini options
Returns: Quote data including price, volume, bid/ask, and other market information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbols | Yes | ||
| require_earnings_date | No | ||
| skip_mini_options_check | No |
Input Schema (JSON Schema)
{
"properties": {
"require_earnings_date": {
"default": false,
"type": "boolean"
},
"skip_mini_options_check": {
"default": false,
"type": "boolean"
},
"symbols": {
"type": "string"
}
},
"required": [
"symbols"
],
"type": "object"
}