stock-quote
GitHub获取任意股票代码的实时股票报价,包括价格、成交量、涨跌幅、市值及52周区间。适用于查询当前股价或基础股票信息的场景。
触发场景
安装
npx skills add staskh/trading_skills --skill stock-quote -g -y
SKILL.md
Frontmatter
{
"name": "stock-quote",
"description": "Get real-time stock quote with price, volume, change, market cap, and 52-week range for any ticker symbol. Use when user asks about current stock price, quote, or basic stock info.",
"dependencies": [
"trading-skills"
]
}
Stock Quote
Fetch current stock data from Yahoo Finance.
Instructions
Note: If
uvis not installed orpyproject.tomlis not found, replaceuv run pythonwithpythonin 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.
版本历史
- cc30858 当前 2026-07-05 11:05
依赖关系
-
required
trading-skills


