get_option_expiration_dates
Retrieve available option expiration dates for a specific stock ticker using the Yahoo Finance MCP Server. Input the stock symbol to fetch relevant options data for informed trading decisions.
Instructions
获取指定股票可用的期权到期日。
参数说明: ticker: str 股票代码,例如 "AAPL"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_option_expiration_datesArguments",
"type": "object"
}