stock-info-explorer

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Stock Information Explorer

股票信息查询工具

This skill fetches OHLCV data from Yahoo Finance via
yfinance
and computes technical indicators locally (no API key required).
本Skill通过
yfinance
从雅虎财经获取OHLCV数据,在本地计算技术指标(无需API密钥)。

Commands

命令

1) Real-time Quotes (
price
)

1) 实时报价 (
price
)

bash
uv run --script scripts/yf.py price TSLA
bash
uv run --script scripts/yf.py price TSLA

shorthand

简写

uv run --script scripts/yf.py TSLA
undefined
uv run --script scripts/yf.py TSLA
undefined

2) Fundamental Summary (
fundamentals
)

2) 基本面摘要 (
fundamentals
)

bash
uv run --script scripts/yf.py fundamentals NVDA
bash
uv run --script scripts/yf.py fundamentals NVDA

3) ASCII Trend (
history
)

3) ASCII趋势图 (
history
)

bash
uv run --script scripts/yf.py history AAPL 6mo
bash
uv run --script scripts/yf.py history AAPL 6mo

4) Professional Chart (
pro
)

4) 专业图表 (
pro
)

Generates a high-resolution PNG chart. By default it includes Volume and Moving Averages (MA5/20/60).
bash
undefined
生成高分辨率PNG图表,默认包含成交量移动平均线(MA5/20/60)
bash
undefined

candle (default)

K线图(默认)

uv run --script scripts/yf.py pro 000660.KS 6mo
uv run --script scripts/yf.py pro 000660.KS 6mo

line

折线图

uv run --script scripts/yf.py pro 000660.KS 6mo line
undefined
uv run --script scripts/yf.py pro 000660.KS 6mo line
undefined

Indicators (optional)

指标(可选)

Add flags to include indicator panels/overlays.
bash
uv run --script scripts/yf.py pro TSLA 6mo --rsi --macd --bb
uv run --script scripts/yf.py pro TSLA 6mo --vwap --atr
  • --rsi
    : RSI(14)
  • --macd
    : MACD(12,26,9)
  • --bb
    : Bollinger Bands(20,2)
  • --vwap
    : VWAP (cumulative for the selected range)
  • --atr
    : ATR(14)
添加对应参数即可展示指标面板/叠加层。
bash
uv run --script scripts/yf.py pro TSLA 6mo --rsi --macd --bb
uv run --script scripts/yf.py pro TSLA 6mo --vwap --atr
  • --rsi
    : RSI(14)
  • --macd
    : MACD(12,26,9)
  • --bb
    : 布林带(20,2)
  • --vwap
    : VWAP(所选时间范围内的累计值)
  • --atr
    : ATR(14)

5) One-shot Report (
report
) ⭐

5) 一键报告 (
report
) ⭐

Prints a compact text summary (price + fundamentals + indicator signals) and automatically generates a Pro chart with BB + RSI + MACD.
bash
uv run --script scripts/yf.py report 000660.KS 6mo
输出简洁的文本摘要(价格+基本面+指标信号),并自动生成包含布林带+RSI+MACD的专业图表
bash
uv run --script scripts/yf.py report 000660.KS 6mo

output includes: CHART_PATH:/tmp/<...>.png

输出包含:CHART_PATH:/tmp/<...>.png

undefined
undefined

Ticker Examples

标的示例

  • US stocks:
    AAPL
    ,
    NVDA
    ,
    TSLA
  • KR stocks:
    005930.KS
    ,
    000660.KS
  • Crypto:
    BTC-USD
    ,
    ETH-KRW
  • Forex:
    USDKRW=X
  • 美股:
    AAPL
    ,
    NVDA
    ,
    TSLA
  • 韩股:
    005930.KS
    ,
    000660.KS
  • 加密货币:
    BTC-USD
    ,
    ETH-KRW
  • 外汇:
    USDKRW=X

Notes / Limitations

注意事项/限制

  • Indicators are computed locally from price data (Yahoo does not reliably provide precomputed indicator series).
  • Data quality may vary by ticker/market (e.g., missing volume for some symbols).

Korean note: 실시간 시세 + 펀더멘털 + 기술지표(차트/요약)까지 한 번에 처리하는 종합 주식 분석 스킬입니다.
  • 指标基于价格数据在本地计算(雅虎不会稳定提供预计算的指标序列)。
  • 不同标的/市场的数据质量可能存在差异(例如部分代码可能缺失成交量数据)。

韩国用户说明:这是一款可一站式处理实时行情+基本面+技术指标(图表/摘要)的综合股票分析Skill。