一键导入
stock-analyzer
Analyze stocks to find discounted/undervalued opportunities using fundamental metrics
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze stocks to find discounted/undervalued opportunities using fundamental metrics
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browser automation via Browser Use Cloud API. Handles full lifecycle: account creation via challenge-response signup, session dispatch, polling, and result extraction. Use when user needs web browsing, scraping, flight search, price comparison, form filling, or any task requiring a real browser agent. Trigger: "browser use", "browse", "use browser agent", "automate browser", or any task needing real browser interaction beyond simple page fetch.
Explore mode with built-in critic. Combines openspec-explore thinking with on-demand design validation via sub-agent. Use when the user wants to explore ideas AND get critical feedback without switching modes. Trigger with /explore-critic or "explore with critic".
Validates recent code changes with ruthless, direct criticism. Uses git diff, Kubernetes/infrastructure docs (cc), and real-world search (exa) to find bugs, misconfigurations, missing edge cases, and anti-patterns. Use after any commit or before merging.
Ingest a Claude Code or pi-agent session into the llm-wiki knowledge base. Parses JSONL session files, extracts clean conversation transcript, drops it into raw/sessions/ for standard wiki ingest. Use when user says "/memory", "save session", "ingest session", or "remember this session".
| name | stock-analyzer |
| description | Analyze stocks to find discounted/undervalued opportunities using fundamental metrics |
Analyze stocks to identify undervalued or discounted investment opportunities using fundamental analysis.
yahoo-datasets_get_stock_info to retrieve current stock informationyahoo-datasets_get_financial_statement for income_stmt and balance_sheetyahoo-datasets_get_recommendations to see analyst sentimentEvaluate these metrics to determine if a stock is undervalued:
Discount % = ((Fair Value - Current Price) / Fair Value) * 100
Fair Value Methods:
1. Graham Number = sqrt(22.5 * EPS * Book Value)
2. DCF = Sum of discounted future cash flows
3. Peer Comparison = Average sector P/E * Company EPS
Provide analysis in this structure:
STOCK ANALYSIS: [TICKER]
========================
Current Price: $XX.XX
52-Week Range: $XX.XX - $XX.XX
VALUATION METRICS:
- P/E Ratio: XX.X (Industry Avg: XX.X)
- Forward P/E: XX.X
- P/B Ratio: XX.X
- PEG Ratio: XX.X
FINANCIAL HEALTH:
- Current Ratio: XX.X
- Debt/Equity: XX.X
- ROE: XX.X%
- Free Cash Flow: $XXB
DISCOUNT ANALYSIS:
- Graham Number: $XX.XX
- Current vs Graham: XX% [discount/premium]
- Analyst Consensus: [Buy/Hold/Sell]
- Price Targets: Low $XX | Avg $XX | High $XX
VERDICT: [Undervalued/Fair Value/Overvalued]
Confidence: [High/Medium/Low]
Key Reasons:
1. [Reason 1]
2. [Reason 2]
3. [Reason 3]
To analyze AAPL for discount:
yahoo-datasets_get_stock_info with ticker="AAPL"yahoo-datasets_get_financial_statement with ticker="AAPL", financial_type="income_stmt"yahoo-datasets_get_recommendations with ticker="AAPL", recommendation_type="recommendations"When screening multiple tickers:
score = (1/PE) + (1/PB) + ROE - DebtEquity