/yfinance-data
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
$ npx -y skills add himself65/finance-skills --skill yfinance-data --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/yfinance-data
Context preview
The summary Claude sees to decide when to auto-load this skill.
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
SKILL.md
yfinance-data.SKILL.mdname: yfinance-data
description: >
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 flow",
"analyst targets", "institutional holders", "compare stocks", "screen for stocks",
or any request involving Yahoo Finance data.
Always use this skill even if the user only provides a ticker — infer intent from context.
yfinance Data Skill
Fetches financial and market data from Yahoo Finance using the [yfinance](https://github.com/ranaroussi/yfinance) Python library.
**Important**: yfinance is not affiliated with Yahoo, Inc. Data is for research and educational purposes.
---
Step 1: Ensure yfinance Is Available
**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:
import subprocess, sys
subprocess.check_call([sys.executable, "-m", "pip", "install", "-q", "yfinance"])
If yfinance is already installed, skip the install step and proceed directly.
---
Step 2: Identify What the User Needs
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` |
---
Step 3: Write and Execute the Code
General pattern
import 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 referenceKey rules
1. **Always wrap in try/except** — Yahoo Finance may rate-limit or return empty data 2. **Use `yf.download()` for multi-ticker comparisons** — it's faster with multi-threading 3. **For options, list expiration dates first** with `ticker.options` before calling `ticker.option_chain(date)` 4. **For quarterly data**, use `quarterly_` prefix: `ticker.quarterly_income_stmt`, `ticker.quarterly_balance_sheet`, `ticker.quarterly_cashflow` 5. **For large date ranges**, be mindful of intraday limits — 1m data only goes back ~7 days, 1h data ~730 days 6. **Print DataFrames clearly** — use `.to_string()` or `.to_markdown()` for readability, or select key columns 7. **Timezone handling** — yfinance returns tz-aware datetime indices (e.g., `America/New_York`). When comparing dates, always use `pd.Timestamp(..., tz=...)` or strip timezones with `.tz_localize(None)`. See the reference file for details.
Valid periods and intervals
| 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` |
---
Step 4: Present the Data
After fetching data, present it clearly:
1. **Summarize key numbers** in a brief text response (current price, market cap, P/E, etc.) 2. **Show tabular data** formatted for readability — use markdown tables or formatted DataFrames 3. **Highlight notable items** — earnings beats/misses, unusual volume, dividend changes 4. **Provide context** — compare to sector averages, historical ranges, or analyst consensus when relevant
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).
---
Reference Files
- `references/api_reference.md` — Complete yfinance API reference with code examples for every data category
Read the reference file when you need exact method signatures or edge case handling.
Read more
name: yfinance-data description: > 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 flow", "analyst targets", "institutional holders", "compare stocks", "screen for stocks", or any request involving Yahoo Finance data. Always use this skill even if the user only provides a ticker — infer intent from context.
yfinance Data Skill
Fetches financial and market data from Yahoo Finance using the [yfinance](https://github.com/ranaroussi/yfinance) Python library.
**Important**: yfinance is not affiliated with Yahoo, Inc. Data is for research and educational purposes.
---
Step 1: Ensure yfinance Is Available
**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:
import subprocess, sys subprocess.check_call([sys.executable, "-m", "pip", "install", "-q", "yfinance"])
If yfinance is already installed, skip the install step and proceed directly.
---
Step 2: Identify What the User Needs
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` |
---
Step 3: Write and Execute the Code
General pattern
import 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 referenceKey rules
1. **Always wrap in try/except** — Yahoo Finance may rate-limit or return empty data 2. **Use `yf.download()` for multi-ticker comparisons** — it's faster with multi-threading 3. **For options, list expiration dates first** with `ticker.options` before calling `ticker.option_chain(date)` 4. **For quarterly data**, use `quarterly_` prefix: `ticker.quarterly_income_stmt`, `ticker.quarterly_balance_sheet`, `ticker.quarterly_cashflow` 5. **For large date ranges**, be mindful of intraday limits — 1m data only goes back ~7 days, 1h data ~730 days 6. **Print DataFrames clearly** — use `.to_string()` or `.to_markdown()` for readability, or select key columns 7. **Timezone handling** — yfinance returns tz-aware datetime indices (e.g., `America/New_York`). When comparing dates, always use `pd.Timestamp(..., tz=...)` or strip timezones with `.tz_localize(None)`. See the reference file for details.
Valid periods and intervals
| 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` |
---
Step 4: Present the Data
After fetching data, present it clearly:
1. **Summarize key numbers** in a brief text response (current price, market cap, P/E, etc.) 2. **Show tabular data** formatted for readability — use markdown tables or formatted DataFrames 3. **Highlight notable items** — earnings beats/misses, unusual volume, dividend changes 4. **Provide context** — compare to sector averages, historical ranges, or analyst consensus when relevant
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).
---
Reference Files
- `references/api_reference.md` — Complete yfinance API reference with code examples for every data category
Read the reference file when you need exact method signatures or edge case handling.
This project is for educational and informational purposes only. Nothing here constitutes financial advice. Always do your own research and consult a qualified financial advisor before making investment decisions.
Repo: himself65/finance-skills
Other skills on finance-skills.
- /finance-sentiment
Fetch structured stock sentiment across Reddit, X.com, news, and Polymarket using the Adanos Finance API. Use this skill whenever the user asks how much people are talking about a stock, how hot a ticker is on social platforms, how many Polymarket bets exist for a company,
Open skill - /fintel-data
Query Fintel (fintel.io) institutional market intelligence via the REST API at https://api.fintel.io/v1 with FINTEL_API_KEY (X-API-KEY header), or the official MCP server at https://mcp.fintel.io/mcp. Read-only data: short interest, borrow rate/fee and shares available to
Open skill - /funda-data
Query Funda AI financial data via two surfaces: the MCP server at https://funda.ai/api/mcp for analyst-grade research synthesis (DCF, comps, earnings previews/recaps, sector deep-dives, SEC filings, transcripts, supply-chain mapping, ownership flow, macro framing) via the
Open skill - /hormuz-strait
Check the current status of the Strait of Hormuz — shipping transit data, oil price impact, stranded vessels, insurance risk levels, diplomatic developments, and global trade impact. Use this skill whenever the user asks about the Strait of Hormuz, Hormuz chokepoint, Persian
Open skill - /hyperliquid-reader
Read Hyperliquid (app.hyperliquid.xyz) perp + spot market data via opencli (read-only, public info API). Use whenever the user wants Hyperliquid perpetual or spot markets, mark/oracle/mid prices, 24h change, funding rates (hourly or annualized APR), open interest, volume, the L2
Open skill - /tradingview-reader
Read TradingView desktop app for market data, news, alerts, watchlists, and screener results using opencli (read-only). Use this skill whenever the user wants quotes, options chains, options expiries, screener results across stocks/crypto/forex/futures/bonds,
Open skill

