工具 API
yfinance_ get_ option_ chain
Fetch option chain data (calls and puts) for a stock with available strike prices. Returns JSON with calls and/or puts data for each expiration date. JSON fields include: - contractSymbol: Option contract identifier - strike: Strike price - lastPrice: Last traded price - bid/ask: Bid and ask prices - volume: Trading volume - openInterest: Open interest - impliedVolatility: Implied volatility (IV) - inTheMoney: Whether option is ITM - contractSize: Contract size (REGULAR) - currency: Currency (USD) Use this to analyze options pricing, IV surfaces, and strike levels.
调用信息
- 工具标识
- smg-yfinance.yfinance_get_option_chain
- 服务提供方
- Yahoo Finance
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
symbol必填Stock ticker symbol (e.g., 'AAPL', 'GOOGL', 'MSFT')
expiration_dateOption expiration date in YYYY-MM-DD format. Use the 'yfinance_get_option_dates' tool to find available dates, or omit to fetch all available expiration dates.
option_typeWhich options to return: 'calls', 'puts', or 'all' (both calls and puts).