Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Fetch financial and market data using the yfinance Python library. Use this skill whenever the user asks for stock prices, historical data, financial statements, options chains, dividends, earnings, analyst recommendations, or any market data. Triggers include: any mention of stock price, ticker symbol (AAPL, MSFT, TSLA, etc.), "get me the financials", "show earnings", "what's the price of", "download stock data", "options chain", "dividend history", "balance sheet", "income statement", "cash fl
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 35% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 9% | 0% |
| case-09 | ✓→✗ | ▼ Worse | -39% | 0% |
| case-13 | ✓→✗ | ▼ Worse | -24% | 0% |
Fetches financial and market data from Yahoo Finance using the yfinance Python library.
Important: yfinance is not affiliated with Yahoo, Inc. Data is for research and educational purposes.
Current environment status:
!`python3 -c "import yfinance; print('yfinance ' + yfinance.__version__ + ' installed')" 2>/dev/null || echo "YFINANCE_NOT_INSTALLED"`If YFINANCE_NOT_INSTALLED, install it before running any code:
pythonimport subprocess, sys subprocess.check_call([sys.executable, "-m", "pip", "install", "-q", "yfinance"])
If yfinance is already installed, skip the install step and proceed directly.
Match the user's request to one or more data categories below, then use the corresponding code from references/api_reference.md.
| User Request | Data Category | Primary Method | |---|---|---| | Stock price, quote | Current price | ticker.info or ticker.fast_info | | Price history, chart data | Historical OHLCV | ticker.history() or yf.download() | | Balance sheet | Financial statements | ticker.balance_sheet | | Income statement, revenue | Financial statements | ticker.income_stmt | | Cash flow | Financial statements | ticker.cashflow | | Dividends | Corporate actions | ticker.dividends | | Stock splits | Corporate actions | ticker.splits | | Options chain, calls, puts | Options data | ticker.option_chain() | | Earnings, EPS | Analysis | ticker.earnings_history | | Analyst price targets | Analysis | ticker.analyst_price_targets | | Recommendations, ratings | Analysis | ticker.recommendations | | Upgrades/downgrades | Analysis | ticker.upgrades_downgrades | | Institutional holders | Ownership | ticker.institutional_holders | | Insider transactions | Ownership | ticker.insider_transactions | | Company overview, sector | General info | ticker.info | | Compare multiple stocks | Bulk download | yf.download() | | Screen/filter stocks | Screener | yf.Screener + yf.EquityQuery | | Sector/industry data | Market data | yf.Sector / yf.Industry | | News | News | ticker.news |
pythonimport subprocess, sys subprocess.check_call([sys.executable, "-m", "pip", "install", "-q", "yfinance"]) import yfinance as yf ticker = yf.Ticker("AAPL") # ... use the appropriate method from the reference
yf.download() for multi-ticker comparisons — it's faster with multi-threadingticker.options before calling ticker.option_chain(date)quarterly_ prefix: ticker.quarterly_income_stmt, ticker.quarterly_balance_sheet, ticker.quarterly_cashflow.to_string() or .to_markdown() for readability, or select key columnsAmerica/New_York). When comparing dates, always use pd.Timestamp(..., tz=...) or strip timezones with .tz_localize(None). See the reference file for details.| Periods | 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max | |---|---| | Intervals | 1m, 2m, 5m, 15m, 30m, 60m, 90m, 1h, 1d, 5d, 1wk, 1mo, 3mo |
After fetching data, present it clearly:
If the user seems to want a chart or visualization, combine with an appropriate visualization approach (e.g., generate an HTML chart or describe the trend).
references/api_reference.md — Complete yfinance API reference with code examples for every data categoryRead the reference file when you need exact method signatures or edge case handling.
Other measured skills in the registry, with their headline benchmark lift.