get_option_chain
Retrieve detailed option chain data for a specific stock, including calls and puts, by providing the ticker symbol, expiration date, and option type. Use this to analyze and strategize financial options trading.
Instructions
根据股票代码、到期日和期权类型获取期权链数据。
参数说明: ticker: str 股票代码,例如 "AAPL" expiration_date: str 期权到期日,格式为 'YYYY-MM-DD' option_type: str 期权类型:'calls' 或 'puts'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expiration_date | Yes | ||
option_type | Yes | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"expiration_date": {
"title": "Expiration Date",
"type": "string"
},
"option_type": {
"title": "Option Type",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"expiration_date",
"option_type"
],
"title": "get_option_chainArguments",
"type": "object"
}