New to Claude Skills? Learn how to install them →

himself65 on GitHub

Yfinance Data

Free

Fetch financial data from Yahoo Finance using Python.

Get this skill

Free · Opens the source repo

What Yfinance Data does

The Yfinance Data skill allows users to retrieve a wide range of financial and market data using the yfinance Python library. This skill is particularly useful for developers and data analysts who need to access stock prices, historical data, financial statements, options chains, dividends, earnings, and more. By leveraging the capabilities of yfinance, users can automate the process of fetching and analyzing financial data, making it easier to integrate this information into their applications or analyses.

To get started, users must ensure that the yfinance library is installed in their Python environment. The skill provides clear instructions for installation and checks the current environment status. Once yfinance is set up, users can easily identify the type of data they need based on their requests, such as stock prices, financial statements, or analyst recommendations. The skill includes a structured approach to match user queries with the appropriate data categories and methods, streamlining the process of data retrieval.

The Yfinance Data skill is ideal for anyone involved in finance, whether they are developers creating financial applications, analysts performing market research, or educators teaching financial concepts. The skill is designed to handle a variety of user requests, making it versatile for different use cases. By following the provided guidelines, users can ensure that they present the fetched data clearly and effectively, enhancing their analysis and decision-making processes.

Overall, this skill simplifies the task of accessing financial data, allowing users to focus on analysis rather than data retrieval. It is a valuable tool for those looking to integrate financial insights into their work or projects.

When to use it

Use this skill whenever you need to retrieve financial data such as stock prices, historical data, or financial statements.

When not to use it

This skill is not suitable for real-time trading applications or scenarios requiring high-frequency data retrieval.

What you can build with it

Retrieve Current Stock Price

Use the skill to fetch the current stock price for a specific ticker symbol, such as AAPL or TSLA.

Analyze Historical Price Trends

Fetch historical price data for a stock over a specified period to analyze trends and make informed decisions.

Access Financial Statements

Retrieve detailed financial statements like balance sheets and income statements for comprehensive financial analysis.

How to install Yfinance Data

View source

1. Install with the skills CLI

npx skills add himself65/finance-skills/yfinance-data --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by himself65

yfinance Data Skill

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.


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 RequestData CategoryPrimary Method
Stock price, quoteCurrent priceticker.info or ticker.fast_info
Price history, chart dataHistorical OHLCVticker.history() or yf.download()
Balance sheetFinancial statementsticker.balance_sheet
Income statement, revenueFinancial statementsticker.income_stmt
Cash flowFinancial statementsticker.cashflow
DividendsCorporate actionsticker.dividends
Stock splitsCorporate actionsticker.splits
Options chain, calls, putsOptions dataticker.option_chain()
Earnings, EPSAnalysisticker.earnings_history
Analyst price targetsAnalysisticker.analyst_price_targets
Recommendations, ratingsAnalysisticker.recommendations
Upgrades/downgradesAnalysisticker.upgrades_downgrades
Institutional holdersOwnershipticker.institutional_holders
Insider transactionsOwnershipticker.insider_transactions
Company overview, sectorGeneral infoticker.info
Compare multiple stocksBulk downloadyf.download()
Screen/filter stocksScreeneryf.Screener + yf.EquityQuery
Sector/industry dataMarket datayf.Sector / yf.Industry
NewsNewsticker.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 reference

Key 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

Periods1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max
Intervals1m, 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.

Frequently asked questions about Yfinance Data

Similar skills