etrade_get_option_expire_dates
Retrieve available option expiration dates for any stock symbol, filtering by weekly, monthly, quarterly, or all expirations to support options trading decisions.
Instructions
Get option expiration dates for a symbol.
Args: symbol: Underlying stock symbol (e.g., "AAPL") expiry_type: WEEKLY, MONTHLY, QUARTERLY, or ALL (optional)
Returns: List of available expiration dates for options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| expiry_type | No |
Input Schema (JSON Schema)
{
"properties": {
"expiry_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}