--- id: staskh/trading_skills/stock-quote version: "aaa129e9" license: MIT install: manual updated: 2026-07-20 --- # 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. Publisher: staskh · Stars: 299 · Updated: 2026-07-20 Install (manual): `git clone https://github.com/staskh/trading_skills` ## SKILL.md # 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: ```bash 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. [View on SkillFed](https://skillfed.io/staskh/trading_skills/stock-quote) · [View on GitHub](https://github.com/staskh/trading_skills)