
Market Data
stock-price-checker
Stock Price Checker is a lightweight Python CLI tool that fetches current equity and ETF data from Yahoo Finance using the yfinance library. It returns structured JSON containing symbol, real-time price, absolute and percent change, previous close, market capitalization, volume, and 52-week high/low
總覽
Stock Price Checker is a lightweight Python CLI tool that fetches current equity and ETF data from Yahoo Finance using the yfinance library.
Stock Price Checker is a lightweight Python CLI tool that fetches current equity and ETF data from Yahoo Finance using the yfinance library. It returns structured JSON containing symbol, real-time price, absolute and percent change, previous close, market capitalization, volume, and 52-week high/low. Key features include no API key requirement, graceful error handling for invalid symbols or missing fields, and compatibility with most major stocks and ETFs. Use cases include quick command-line lookups, embedding price checks in automation scripts or alerts, populating dashboards, validating market data for backtests, and ad-hoc portfolio monitoring. Core advantages are simplicity, cross-platform portability, comprehensive data fields in machine-readable JSON, and easy integration into existing Python workflows or DevOps pipelines.
Skill.md
這個 Skill 如何運作
Stock Price Checker is a lightweight Python CLI tool that fetches current equity and ETF data from Yahoo Finance using the yfinance library. It returns structured JSON containing symbol, real-time price, absolute and percent change, previous close, market capitalization, volume, and 52-week high/low
Stock Price Checker
Get current stock prices from Yahoo Finance using the yfinance library.
Quick Commands
cd skills/stock-price-checker
# Check stock price
python3 stock-price.py NVDA
# Check another stock
python3 stock-price.py AAPL
Usage Examples
Check NVIDIA stock:
python3 stock-price.py NVDA
Check VOO (S&P 500 ETF):
python3 stock-price.py VOO
Check QQQ (Nasdaq-100 ETF):
python3 stock-price.py QQQ
Check any stock symbol:
python3 stock-price.py TSLA
python3 stock-price.py MSFT
python3 stock-price.py AAPL
Output Format
{
"symbol": "NVDA",
"price": 189.52,
"change": 3.05,
"change_percent": 1.64,
"previous_close": 186.47,
"market_cap": 4614243483648,
"volume": 112439494,
"fifty_two_week_high": 212.19,
"fifty_two_week_low": 86.62
}
Technical Notes
- Uses yfinance library to fetch data from Yahoo Finance
- No API key required
- Handles errors gracefully
- Works with most major stocks and ETFs
- Returns comprehensive data including market cap, volume, and 52-week range
Troubleshooting
- If the stock symbol is invalid, the script will return an error
- Some data (like market cap) may not be available for all symbols
最適合用於
何時使用
Stock Price Checker is a lightweight Python CLI tool that fetches current equity and ETF data from Yahoo Finance using the yfinance library. It returns structured JSON containing symbol, real-time price, absolute and percent change, previous close, market capitalization, volume, and 52-week high/low

01 · 會前準備
準備決策簡報
在投資委員會開會前,把零散證據整理成結構化的論據。

02 · 團隊協作
統一交接標準
讓分析師、投資組合經理與 Agent 產出一致的研究結果。

03 · 即時更新
更新投資邏輯
出現新催化劑、KPI 發布或財報結果後,更新情境假設。
社群回饋
越用越好用。
隨著 Skill 被使用與評審,回饋將顯示在這裡。
探索更多
相關 Skills
查看全部gmgn-market
gmgn-market is a CLI-driven Skill for retrieving crypto and meme-token market data: K-line (candlestick/OHLCV) charts, trending token rankings by USD volume, Trenches token lists, and newly launched…
crypto-price
This Skill retrieves cryptocurrency prices and generates dark-themed candlestick charts via a simple CLI. Invoke the script with a token symbol and optional duration (e.g., 30m, 3h, 12h, 2d) to…
cmc-api-crypto
This skill documents the CoinMarketCap (CMC) Cryptocurrency REST API for programmatic access to market and token data. It details authentication (API key via X-CMC_PRO_API_KEY), base URL, and…