stock-quote
Stock Quote pulls live market data from Yahoo Finance for any ticker you specify, returning current price, trading volume, market capitalization, and 52-week highs and lows. The skill formats results for quick readability and flags significant price movements to help you spot market action at a glance.
Stock Quote retrieves real-time price, volume, and market data for any ticker symbol from Yahoo Finance.
AI-generated summary based on this skill's SKILL.md
Install
staskh/trading_skills/stock-quote · repository language: Python
git clone https://github.com/staskh/trading_skills
cp -r trading_skills/.claude/skills/stock-quote ~/.claude/skills/stock-quotenpx skillfed install staskh/trading_skills/stock-quoteFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What's the current price of Apple stock using stock-quote?
Stock Quote retrieves live market data from Yahoo Finance. Simply provide the ticker symbol (like AAPL for Apple), and the skill returns the current price along with trading volume, market cap, and 52-week range. Results are formatted for quick readability so you can spot the information you need instantly.
Can stock-quote show me real-time stock quotes?
Stock Quote delivers real-time market data including current price, trading volume, percentage change, and market capitalization for any ticker you request. The skill automatically flags significant price movements to help you monitor market action and identify trading opportunities at a glance.
How do I get 52-week high and low data with stock-quote?
Stock Quote includes 52-week range and performance metrics in its standard data pull. When you query a ticker symbol, the skill returns both the 52-week high and low alongside current price and volume, giving you context for how the stock is trading relative to its annual range.
Does stock-quote provide financial ratios like PE and dividend yield?
Stock Quote fetches financial ratios including PE ratio and dividend yield as part of its comprehensive market data from Yahoo Finance. These metrics help you evaluate valuation and income potential alongside real-time pricing and volume information for informed investment decisions.
Can I monitor stock price movements and percentage changes?
Stock Quote tracks stock price movements and displays percentage changes to help you monitor market action. The skill flags significant price movements in its formatted results, making it easy to spot volatility and identify when a stock is making notable moves during the trading day.
SKILL.md
rendered from the published skill — quoted content, verbatim
Stock Quote
Fetch current stock data from Yahoo Finance.
Instructions
> Note: If uv is not installed or pyproject.toml is not found, replace uv run python with python in all commands below.
Run the quote script with the ticker symbol:
uv run python scripts/quote.py SYMBOL
Replace SYMBOL with the requested ticker (e.g., AAPL, MSFT, TSLA, SPY).
Output
The script outputs JSON with: - symbol, name, price, change, change_percent - volume, avg_volume, market_cap - high_52w, low_52w, pe_ratio, dividend_yield
Present the data in a readable format. Highlight significant moves (>2% change).
Dependencies
yfinance
Timezone
All timestamps and time-based calculations must use the America/New_York timezone. All JSON output must include generated_at (NY time string) and data_delay fields.
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
.claude/skills/stock-quote/SKILL.md
.claude/skills/stock-quote/scripts/quote.py