option-chain
GitHub获取特定到期日的期权链数据,包括看涨/看跌期权、行权价、买卖价、成交量及隐含波动率。支持查询可用日期或指定日期,输出JSON并以表格展示,高亮关键指标。
触发场景
安装
npx skills add staskh/trading_skills --skill option-chain -g -y
SKILL.md
Frontmatter
{
"name": "option-chain",
"description": "Get option chain data including calls and puts with strikes, bids, asks, volume, open interest, and implied volatility. Use when user asks about options, option prices, calls, puts, or option chain for a specific expiration date.",
"dependencies": [
"trading-skills"
]
}
Option Chain
Fetch option chain data from Yahoo Finance for a specific expiration date.
Instructions
Note: If
uvis not installed orpyproject.tomlis not found, replaceuv run pythonwithpythonin all commands below.
First, get available expiration dates:
uv run python scripts/options.py SYMBOL --expiries
Then fetch the chain for a specific expiry:
uv run python scripts/options.py SYMBOL --expiry YYYY-MM-DD
Arguments
SYMBOL- Ticker symbol (e.g., AAPL, SPY, TSLA)--expiries- List available expiration dates only--expiry YYYY-MM-DD- Fetch chain for specific date
Output
Returns JSON with:
calls- Array of call options with strike, bid, ask, volume, openInterest, impliedVolatilityputs- Array of put options with same fieldsunderlying_price- Current stock price for reference
Present data as a table. Highlight high volume/OI strikes and notable IV levels.
Dependencies
pandasyfinance
Timezone
All timestamps and time-based calculations must use the America/New_York timezone. All JSON output must include generated_at (NY time string) and data_delay fields.
版本历史
- cc30858 当前 2026-07-05 11:04
依赖关系
-
required
trading-skills


