بنقرة واحدة
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