
Stock Market Pro
Pull live quotes, fundamentals, earnings, and chart PNGs for tickers while validating fintech ideas or personal investment context.
Overview
Stock Market Pro is an agent skill most often used in Validate/pricing (also Idea/research and Grow/analytics) that fetches Yahoo Finance quotes, fundamentals, earnings, and chart images via script commands.
Install
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill stock-market-proWhat is this skill?
- Real-time quotes and day ranges via Yahoo Finance-backed scripts
- Fundamentals command: market cap, PE, EPS, ROE, profit margins
- Pro charts: candlestick or line PNG with volume and MA5/20/60
- Earnings calendar and consensus for expected revenue and EPS
- History command with ASCII terminal charts for quick 10-day trends
- Technical indicators MA5, MA20, and MA60 on pro charts
- Five core command families: price, pro, fundamentals, earnings, history
Adoption & trust: 3.7k installs on skills.sh; 609 GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need PE, earnings dates, and charts for tickers without leaving your agent session to tab through finance sites.
Who is it for?
Builders researching markets for side projects, fintech MVPs, or vendor stock context who already use OpenClaw-style script skills.
Skip if: Skip for production trading, compliance reporting, or real-time low-latency execution—this is research-oriented Yahoo Finance data via local scripts.
When should I use this skill?
You need real-time quotes, valuation metrics, earnings calendar data, or candlestick/line charts for US, KR, crypto, or forex tickers via documented bash/uv commands.
What do I get? / Deliverables
You get terminal output or PNG charts and valuation fields you can cite in validation memos, pitch decks, or feature specs.
- Terminal quote and fundamentals tables
- PNG chart files with volume and moving averages
- ASCII history trend output
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Validate/pricing is the canonical shelf for market and valuation research before you bake financial assumptions into a product. Pricing subphase covers PE, EPS, ROE, margins, and earnings consensus—the skill's fundamentals and earnings commands.
Where it fits
Pull fundamentals for public comps in your SaaS niche before choosing a positioning angle.
Check earnings consensus and margin stats to ground revenue assumptions in a fintech prototype spec.
Attach a pro chart PNG and quote block when writing investor or newsletter updates about market movers.
How it compares
Local uv script skill for research snapshots—not a brokerage API integration or SEC filing MCP.
Common Questions / FAQ
Who is stock-market-pro for?
Solo developers and indie founders who want agent-driven equity, crypto, and forex snapshots while validating ideas or monitoring names.
When should I use stock-market-pro?
During Validate pricing to compare public comps, during Idea research on sector leaders, and during Grow analytics when narrating market context in content.
Is stock-market-pro safe to install?
Scripts call external market data over the network—review the Security Audits panel on this page and treat outputs as informational, not investment advice.
SKILL.md
READMESKILL.md - Stock Market Pro
# Stock Market Pro A professional-grade financial analysis tool powered by Yahoo Finance data. ## Core Features ### 1. Real-time Quotes (`price`) Get instant price updates and day ranges. ```bash uv run --script scripts/yf price [TICKER] ``` ### 2. Professional Charts (`pro`) Generate high-resolution PNG charts with Volume and Moving Averages. - **Candlestick**: `uv run --script scripts/yf pro [TICKER] [PERIOD]` - **Line Chart**: `uv run --script scripts/yf pro [TICKER] [PERIOD] line` - **Periods**: `1mo`, `3mo`, `6mo`, `1y`, `5y`, `max`, etc. ### 3. Fundamental Analysis (`fundamentals`) Deep dive into valuation: Market Cap, PE, EPS, ROE, and Profit Margins. ```bash uv run --script scripts/yf fundamentals [TICKER] ``` ### 4. Earnings & Estimates (`earnings`) Check upcoming earnings dates and market consensus (Expected Revenue/EPS). ### 5. Historical Trends (`history`) View recent 10-day trends with terminal-friendly ASCII charts. ## Ticker Examples - **US Stocks**: `AAPL`, `NVDA`, `TSLA` - **Korean Stocks**: `005930.KS` (Samsung), `000660.KS` (SK Hynix) - **Crypto**: `BTC-USD`, `ETH-KRW` ## Technical Notes - **Engine**: Python 3.11+, `yfinance`, `mplfinance`, `rich` - **Key Benefit**: No API key required. Automatically handles dependencies via `uv`. --- *한국어 설명: 실시간 주가 조회, 재무 지표 분석 및 전문 봉차트 생성이 가능한 종합 주식 분석 스킬입니다.*