/install equity-research
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 \x3CTICKER>
Step 2 — Fundamentals (valuation, profitability, balance sheet)
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py \x3CTICKER>
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-brieftakes a market scope word (US,EUROPE,ASIA,GLOBAL,UK,GERMANY,NETHERLANDS,JAPAN,SOUTH_KOREA). Do NOT pass a bare company ticker likeAAPLorRHM.DE— it will error. UseUSfor US-listed equities,EUROPEfor European stocks,GLOBALfor 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 runinternally — 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
.shwrapper scripts — calluv run src/main.pydirectly as shown in the examples. uv runreads the inline# /// scriptdependency block in eachmain.pyand auto-installsyfinance— 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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install equity-research - 安装完成后,直接呼叫该 Skill 的名称或使用
/equity-research触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Equity Research 是什么?
Run a full equity research report on a stock by executing three local scripts with uv run. Read this skill file for exact commands. Do NOT use sessions_spawn... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 451 次。
如何安装 Equity Research?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install equity-research」即可一键安装,无需额外配置。
Equity Research 是免费的吗?
是的,Equity Research 完全免费(开源免费),可自由下载、安装和使用。
Equity Research 支持哪些平台?
Equity Research 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Equity Research?
由 youpele52(@youpele52)开发并维护,当前版本 v0.1.1。