Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

stock-valuation股票估值

Agent Skill

stock-valuation 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,968

周安装

738

GitHub Stars

1

下载量

5,544
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stock-valuation(股票估值)
来源仓库:https://github.com/xliucs/stock-valuation
安装命令:
openclaw skills install stock-valuation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install stock-valuation

简介

生成HTML/PDF格式的综合公司估值报告的专业分析工具。

  • 适用于企业基本面研究与长期价值投资论证场景。
  • 输入公司名称或代码,输出包含DCF、可比公司等方法的详细报告。
  • 安装命令:openclaw skills install stock-valuation,需财务数据与模型模板支持。
  • 注意假设条件敏感性,不同参数导致估值区间较大。

SKILL.md

name
stock-valuation
description
Generate comprehensive company valuation reports as polished HTML/PDF. Use when user asks for stock valuation, company analysis, investment thesis, or deep-dive on a ticker. Pipeline: (1) run_pipeline.py collects all quantitative data in parallel, (2) agent does web research for Seeking Alpha, X/Twitter, analyst PTs, revenue composition, catalysts/risks, (3) generate_report.py produces polished light-theme HTML with embedded charts, smart callouts, and detailed valuation framework. NOT for quick price checks, daily watchlist alerts, or real-time trading signals.

Stock Valuation Report Generator v3.0

Generate professional valuation reports with ONE command. The pipeline auto-detects peers, runs all 8 data scripts in parallel, and produces a polished HTML report.

Quick Start (One Prompt)

User: "Generate a valuation report for AAPL"

Agent steps:

Step 1: Run Data Pipeline

uv run --with yfinance,matplotlib,lxml python3 $SKILL_DIR/scripts/run_pipeline.py TICKER
# Outputs: /tmp/TICKER_data.json

Options:

# Specify peers manually
uv run --with yfinance,matplotlib,lxml python3 $SKILL_DIR/scripts/run_pipeline.py AAPL --peers MSFT GOOG META

Step 2: Qualitative Research (MANDATORY)

Run these searches in parallel and collect the results into /tmp/TICKER_research.json:

2a. Seeking Alpha Research

web_search "{TICKER} seekingalpha analysis 2025 2026"
web_search "seekingalpha {TICKER} strong buy OR turning bullish OR high growth"

Extract 3-5 articles: title, date, rating (Strong Buy/Buy/Hold/Sell), one-sentence thesis.

2b. X/Twitter Sentiment

# If bird CLI available:
bird search '$TICKER' -n 15 --plain
# Otherwise:
web_search "{TICKER} stock twitter sentiment price target"

Extract 3-5 notable posts: username, bull/bear stance, key argument, any specific price target.

2c. Analyst Consensus

web_search "{TICKER} analyst price target consensus 2026"

Extract: consensus rating, average/low/high price targets.

2d. Earnings & Revenue

web_search "{TICKER} latest earnings call revenue composition segments"
web_fetch "BEST_EARNINGS_URL" --maxChars 6000

Extract: revenue by segment (amount, % of total, YoY growth), geographic breakdown, funded accounts/AUM/key KPIs, management guidance.

2e. Catalysts & Risks

Synthesize from all research above. Aim for 5-7 catalysts and 5-7 risks (with mitigants).

Save as Research JSON

Save to /tmp/TICKER_research.json:

{
  "sa_articles": [
    {"title": "Article Title", "date": "Dec 2025", "rating": "Strong Buy", "summary": "Key thesis in one sentence"}
  ],
  "twitter_sentiment": [
    {"user": "FinanceGuy", "stance": "Bullish", "summary": "Key argument or price target"}
  ],
  "analyst_consensus": {"rating": "Strong Buy", "avg_pt": 200.0, "low_pt": 150.0, "high_pt": 250.0},
  "catalysts": [
    "Q4 earnings beat could trigger re-rating (reporting Mar 19)",
    "Geographic expansion into new markets reducing concentration risk"
  ],
  "risks": [
    "Regulatory risk in key markets. Mitigant: diversified across 6+ jurisdictions",
    "Trading volume cyclicality. Mitigant: interest income provides stable base"
  ],
  "revenue_composition": [
    {"stream": "Product Sales", "amount": "$50B", "pct": "52%", "trend": "Strong growth", "notes": "Core hardware"}
  ],
  "geographic_data": [
    {"market": "Americas", "new_accounts_pct": "45%", "avg_deposit": "$50K", "highlights": "Largest market"}
  ]
}

Step 3: Generate Report

uv run python3 $SKILL_DIR/scripts/generate_report.py /tmp/TICKER_data.json --research /tmp/TICKER_research.json
# Outputs: /tmp/TICKER_report.html

Step 4: Convert to PDF & Deliver

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
  --headless --disable-gpu --print-to-pdf=/tmp/TICKER_report.pdf \
  --no-pdf-header-footer /tmp/TICKER_report.html

Deliver the PDF (and optionally HTML) to the user.

Script Reference

ScriptDepsOutput
run_pipeline.py TICKER [--peers P1 P2] [--output]yfinance,matplotlib,lxmlMerged JSON → file
generate_report.py DATA.json [--output] [--research](none)HTML report
fetch_fundamentals.py TICKER [PEERS...]yfinanceFinancials, ratios, peer data
fetch_technicals.py TICKERyfinanceSMAs, RSI, MACD, 52W range
fetch_historical_valuation.py TICKERyfinance,lxml5yr P/E history, percentile
dcf_model.py TICKER [--wacc] [--growth-*]yfinance10yr DCF bear/base/bull
fetch_insiders.py TICKERyfinanceInsider txns + institutional holders
fetch_options.py TICKERyfinanceP/C ratio, IV, unusual vol
fetch_earnings_calendar.py TICKERyfinanceNext earnings date
generate_charts.py TICKERyfinance,matplotlib4 PNGs → /tmp/
detect_peers.py TICKER [--count N]yfinanceAuto-detected peers
filter_tweets.py (stdin)(none)Filtered tweet JSON

Report Sections

The generated report includes all of these (in order):

  1. Header (company name, ticker, date, data sources)
  2. Earnings Badge (next earnings date)
  3. KPI Cards (price, MCap, P/E, margins — 2 rows of 4)
  4. Quarterly Trends (with QoQ growth arrows ↑↑/↑/→/↓)
  5. Revenue Composition (segment breakdown table + insight callout)
  6. Geographic Expansion (market-by-market table)
  7. Technical Analysis (6-panel: RSI, SMAs, MACD, 52W range)
  8. Charts (2×2 grid: price+SMA, revenue, margins, PE history)
  9. Historical Valuation (5Y PE avg, range, percentile + mean reversion callout)
  10. Peer Comparison (full table with highlight row + discount callout)
  11. Options Sentiment (4 KPI cards + interpretation)
  12. Insider Activity
  13. Seeking Alpha Research (bullish/cautious grouping + consensus callout)
  14. X/Twitter Sentiment (notable takes + consensus callout)
  15. Catalysts (5-7 items, most important first)
  16. Risks (5-7 items with mitigants)
  17. Valuation Framework (P/E multiples, mean reversion, DCF)
  18. Price Target Scenarios (bear/base/bull with math)
  19. Investment Thesis (specific, opinionated verdict)
  20. Disclaimer
  21. Footer

Rules

  • NEVER include personal position data, portfolio info, or user-identifiable information
  • All scripts work with uv run --with <deps> (no pip install needed)
  • Charts are embedded as base64 in HTML for portability
  • If any data script fails, its section shows gracefully degraded (no broken HTML)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.51%
按下载量换算4,685

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills