File contents Stock Value Scanner Skill
Description
这是一个综合性的美股分析工具。它集成了价值投资评分 (基于 Yahoo Finance 的 P/E, ROE 等指标)、趋势技术分析 (历史回撤、均线判断)以及市场异动扫描 (涨跌幅榜、热门交易)。无论是寻找被低估的优质股,还是追踪市场的热点趋势,此 Skill 都能提供数据支持。
Features
实时估值分析 :自动获取 P/B, P/E, PEG 等核心估值指标 (Yahoo Finance)。
股价趋势分析 :查看收盘价、历史高点回撤、52周范围及长期均线趋势。
市场异动扫描 :实时查看美股涨幅榜、跌幅榜及热门交易股。
质量体检 :自动检测 ROE, 净利率等质量指标,排除“垃圾股”。
智能打分 :基于巴菲特价值投资逻辑生成 0-6 分的综合评分。
Usage
前置要求 :
必须安装 Python 库 yfinance: pip install yfinance
无需 任何 API Key。
Example Prompts
"分析一下 MARA 的投资价值"
"看看 AAPL 最近的走势怎么样"
"查询 NVDA 离历史高点还有多远"
"看看今天美股涨幅榜"
"最近哪些股票交易最活跃"
Execution
1. 价值分析 & 评分
python3 .gemini/skills/stock-value-scanner/scripts/scanner.py [SYMBOL]
或批量扫描预设列表:
python3 .gemini/skills/stock-value-scanner/scripts/scanner.py --scan
2. 股价趋势查询
python3 .gemini/skills/stock-value-scanner/scripts/stock_price.py [SYMBOL]
3. 市场异动查询
python3 .gemini/skills/stock-value-scanner/scripts/market_movers.py --type [gainers|losers|active]
Tips for the Agent
场景区分 :
用户问 “值不值得买”、“基本面”、“估值” -> 使用 scanner.py。
用户问 “趋势”、“走势”、“历史高点”、“回撤”、“均线” -> 使用 stock_price.py。
用户问 “涨幅榜”、“跌幅榜”、“热门”、“异动”、“大盘” -> 使用 market_movers.py。
遇到 ImportError: No module named 'yfinance' 错误时,请指导用户运行 pip install yfinance。
运行结果是文本报告,直接展示给用户即可,无需过度解释。
1 --- 2 name: stock-value-scanner 3 description: 进行股票异动,价值投资分析与趋势查询 4 --- 5 6 # Stock Value Scanner Skill 7 8 9 ## Description 10 这是一个综合性的美股分析工具。它集成了**价值投资评分**(基于 Yahoo Finance 的 P/E, ROE 等指标)、**趋势技术分析**(历史回撤、均线判断)以及**市场异动扫描**(涨跌幅榜、热门交易)。无论是寻找被低估的优质股,还是追踪市场的热点趋势,此 Skill 都能提供数据支持。 11 12 ## Features 13 - **实时估值分析**:自动获取 P/B, P/E, PEG 等核心估值指标 (Yahoo Finance)。 14 - **股价趋势分析**:查看收盘价、历史高点回撤、52周范围及长期均线趋势。 15 - **市场异动扫描**:实时查看美股涨幅榜、跌幅榜及热门交易股。 16 - **质量体检**:自动检测 ROE, 净利率等质量指标,排除“垃圾股”。 17 - **智能打分**:基于巴菲特价值投资逻辑生成 0-6 分的综合评分。 18 19 ## Usage 20 21 **前置要求**: 22 - 必须安装 Python 库 `yfinance`: `pip install yfinance` 23 - **无需** 任何 API Key。 24 25 ### Example Prompts 26 - "分析一下 MARA 的投资价值" 27 - "看看 AAPL 最近的走势怎么样" 28 - "查询 NVDA 离历史高点还有多远" 29 - "看看今天美股涨幅榜" 30 - "最近哪些股票交易最活跃" 31 32 ## Execution 33 34 ### 1. 价值分析 & 评分 35 ```bash 36 python3 .gemini/skills/stock-value-scanner/scripts/scanner.py [SYMBOL] 37 ``` 38 或批量扫描预设列表: 39 ```bash 40 python3 .gemini/skills/stock-value-scanner/scripts/scanner.py --scan 41 ``` 42 43 ### 2. 股价趋势查询 44 ```bash 45 python3 .gemini/skills/stock-value-scanner/scripts/stock_price.py [SYMBOL] 46 ``` 47 48 ### 3. 市场异动查询 49 ```bash 50 python3 .gemini/skills/stock-value-scanner/scripts/market_movers.py --type [gainers|losers|active] 51 ``` 52 53 ## Tips for the Agent 54 - **场景区分**: 55 - 用户问 **“值不值得买”、“基本面”、“估值”** -> 使用 `scanner.py`。 56 - 用户问 **“趋势”、“走势”、“历史高点”、“回撤”、“均线”** -> 使用 `stock_price.py`。 57 - 用户问 **“涨幅榜”、“跌幅榜”、“热门”、“异动”、“大盘”** -> 使用 `market_movers.py`。 58 - 遇到 `ImportError: No module named 'yfinance'` 错误时,请指导用户运行 `pip install yfinance`。 59 - 运行结果是文本报告,直接展示给用户即可,无需过度解释。
flying3615/my-skills-writer/tree/main/stock-value-scanner commit 65ae083639
Frequently asked questions How do I install the Stock Value Scanner skill? Run npx skillmds@latest add flying3615/stock-value-scanner in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Stock Value Scanner skill do? 进行股票异动,价值投资分析与趋势查询 It is listed under Coding & Dev Tools on SkillMD.
Is Stock Value Scanner safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Stock Value Scanner? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Stock Value Scanner free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Stock Value Scanner? flying3615 (@flying3615) published this skill. Their other Agent Skills are listed on their SkillMD profile.