Skill: Equity Research
When to use
- The user wants a full breakdown or deep dive on a stock.
- The user wants to make a buy/sell/hold decision and needs all signals in one place.
- The user asks "tell me everything about [ticker]" or "give me a full report on [company]".
- The user wants comprehensive equity research combining price, fundamentals, and market sentiment.
When NOT to use
- The user only wants the current price or daily movement ā use
stock-price-checker-pro
- The user only wants fundamentals (P/E, EPS, margins) ā use
stock-fundamentals
- The user only wants recent news headlines ā use
market-news-brief
Commands
This skill orchestrates three sub-skills. Run all three commands for the same ticker, then synthesize the results into a unified report.
Step 1 ā Current price, ranges, and upcoming events
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py <TICKER>
Step 2 ā Fundamentals (valuation, profitability, balance sheet)
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py <TICKER>
Step 3 ā Broad market news and sentiment
# For US-listed stocks
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
# For German/European stocks (e.g. RHM.DE, SAP.DE, ASML.AS)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py EUROPE
# For Japanese stocks (e.g. 7203.T)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py JAPAN
# For Korean stocks (e.g. 005930.KS)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py SOUTH_KOREA
ā ļø market-news-brief takes a market scope word (US, EUROPE, ASIA, GLOBAL, UK, GERMANY, NETHERLANDS, JAPAN, SOUTH_KOREA).
Do NOT pass a bare company ticker like AAPL or RHM.DE ā it will error.
Use US for US-listed equities, EUROPE for European stocks, GLOBAL for a worldwide macro backdrop.
Full example ā Apple (US)
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py AAPL
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py AAPL
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
Full example ā Rheinmetall (Germany)
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py RHM.DE
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py RHM.DE
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py EUROPE
Full example ā NVIDIA (US)
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py NVDA
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py NVDA
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
Report Structure
After running all three commands, synthesize the results into a structured report:
- Price Snapshot ā current price, daily change, volume, 52W range, upcoming events
- Fundamentals Summary ā valuation multiples, profitability margins, debt profile, analyst target
- Market Context ā macro tone for the relevant region, dominant themes, key headlines
- Overall Take ā a brief synthesized assessment combining all three signals (bullish / neutral / bearish and why)
Notes
- Always run all three sub-skills before writing the report ā partial data leads to incomplete conclusions.
- Each sub-skill uses
uv run internally ā no manual pip install or environment setup needed.
- Do NOT attempt to fetch any of this data via web search or curl ā always use the commands above.
- Do NOT use the
.sh wrapper scripts ā call uv run src/main.py directly as shown in the examples.
uv run reads the inline # /// script dependency block in each main.py and auto-installs yfinance ā no pip or venv setup needed.
- Ticker symbols must be valid Yahoo Finance tickers. See TOOLS.md for the full ticker format reference by exchange.