Awesome-openclaw-skills stock-info-explorer
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/stock-info-explorer" ~/.claude/skills/sundial-org-awesome-openclaw-skills-stock-info-explorer && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/stock-info-explorer" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-stock-info-explorer && rm -rf "$T"
manifest:
skills/stock-info-explorer/SKILL.mdsource content
Stock Information Explorer
This skill fetches OHLCV data from Yahoo Finance via
yfinance and computes technical indicators locally (no API key required).
Commands
1) Real-time Quotes (price
)
priceuv run --script scripts/yf.py price TSLA # shorthand uv run --script scripts/yf.py TSLA
2) Fundamental Summary (fundamentals
)
fundamentalsuv run --script scripts/yf.py fundamentals NVDA
3) ASCII Trend (history
)
historyuv run --script scripts/yf.py history AAPL 6mo
4) Professional Chart (pro
)
proGenerates a high-resolution PNG chart. By default it includes Volume and Moving Averages (MA5/20/60).
# candle (default) uv run --script scripts/yf.py pro 000660.KS 6mo # line uv run --script scripts/yf.py pro 000660.KS 6mo line
Indicators (optional)
Add flags to include indicator panels/overlays.
uv run --script scripts/yf.py pro TSLA 6mo --rsi --macd --bb uv run --script scripts/yf.py pro TSLA 6mo --vwap --atr
: RSI(14)--rsi
: MACD(12,26,9)--macd
: Bollinger Bands(20,2)--bb
: VWAP (cumulative for the selected range)--vwap
: ATR(14)--atr
5) One-shot Report (report
) ⭐
reportPrints a compact text summary (price + fundamentals + indicator signals) and automatically generates a Pro chart with BB + RSI + MACD.
uv run --script scripts/yf.py report 000660.KS 6mo # output includes: CHART_PATH:/tmp/<...>.png
Ticker Examples
- US stocks:
,AAPL
,NVDATSLA - KR stocks:
,005930.KS000660.KS - Crypto:
,BTC-USDETH-KRW - Forex:
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: 실시간 시세 + 펀더멘털 + 기술지표(차트/요약)까지 한 번에 처리하는 종합 주식 분석 스킬입니다.