From tradermonty-claude-trading-skills
Screens dividend growth stocks (12%+ CAGR, 1.5%+ yield) in RSI oversold pullbacks (≤40) using FMP/FINVIZ APIs. For long-term investors seeking entry points during weakness.
npx claudepluginhub joshuarweaver/cascade-business-ops --plugin tradermonty-claude-trading-skillsThis skill uses the workspace's default tool permissions.
This skill screens for dividend growth stocks that exhibit strong fundamental characteristics but are experiencing temporary technical weakness. It targets stocks with exceptional dividend growth rates (12%+ CAGR) that have pulled back to RSI oversold levels (≤40), creating potential entry opportunities for long-term dividend growth investors.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
This skill screens for dividend growth stocks that exhibit strong fundamental characteristics but are experiencing temporary technical weakness. It targets stocks with exceptional dividend growth rates (12%+ CAGR) that have pulled back to RSI oversold levels (≤40), creating potential entry opportunities for long-term dividend growth investors.
Investment Thesis: High-quality dividend growth stocks (often yielding 1-2.5%) compound wealth through dividend increases rather than high current yield. Buying these stocks during temporary pullbacks (RSI ≤40) can enhance total returns by combining strong fundamental growth with favorable technical entry timing.
Use this skill when:
Do NOT use when:
FMP_API_KEY environment variable or pass --fmp-api-key. Free tier (250 calls/day) is sufficient for FMP-only mode (≤40 stocks). Sign up.FINVIZ_API_KEY environment variable or pass --finviz-api-key. Reduces execution time from 10–15 min to 2–3 min. Sign up.requests and pandas libraries installed.For optimal performance, use FINVIZ Elite API for pre-screening + FMP API for detailed analysis:
# Set both API keys as environment variables
export FMP_API_KEY=your_fmp_key_here
export FINVIZ_API_KEY=your_finviz_key_here
Why Two-Stage?
If you don't have FINVIZ Elite access:
export FMP_API_KEY=your_key_here
Limitation: FMP free tier (250 requests/day) limits analysis to ~40 stocks. Use --max-candidates 40 to stay within limits.
Two-Stage Screening (RECOMMENDED):
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py --use-finviz
This executes:
FMP-Only Screening:
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py --max-candidates 40
Customization Options:
# Two-stage with custom parameters
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py \
--use-finviz --min-yield 2.0 --min-div-growth 15.0 --rsi-max 35
# FMP-only with custom parameters
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py \
--min-yield 2.0 --min-div-growth 10.0 --max-candidates 30
# Provide API keys as arguments (instead of environment variables)
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py \
--use-finviz --fmp-api-key YOUR_FMP_KEY --finviz-api-key YOUR_FINVIZ_KEY
The script generates two outputs:
JSON file: dividend_growth_pullback_results_YYYY-MM-DD.json
Markdown report: dividend_growth_pullback_screening_YYYY-MM-DD.md
For each qualified stock, the report includes:
Dividend Growth Profile:
Technical Timing:
Quality Metrics:
Investment Recommendation:
The script saves two files to the current working directory (or --output-dir if specified):
| File | Description |
|---|---|
dividend_growth_pullback_results_YYYY-MM-DD.json | Structured data with all metrics (yield, dividend CAGR, RSI, composite score, etc.) |
dividend_growth_pullback_screening_YYYY-MM-DD.md | Human-readable report with stock profiles, entry timing, and investment recommendations |
Report structure (Markdown):
Initial Filter:
Dividend Growth Analysis:
Financial Health:
RSI Calculation:
RSI Filter:
40: Not oversold (excluded)
Composite Scoring (0-100):
Stocks ranked by composite score. Top scorers combine exceptional dividend growth with attractive technical entry points.
RSI 25-30 (Extreme Oversold):
RSI 30-35 (Strong Oversold):
RSI 35-40 (Early Pullback):
12% Dividend CAGR (Minimum Threshold):
15% Dividend CAGR (Excellent):
20% Dividend CAGR (Exceptional):
Key Insight: Lower starting yield + high growth > high starting yield + low growth over 10+ years.
Possible Causes:
Solutions:
--rsi-max 45 (early pullback phase)--min-div-growth 10.0 (still excellent growth)--min-yield 1.0 (capture more growth stocks)FMP Free Tier Limits:
Solutions:
1. Use FINVIZ Two-Stage Approach (RECOMMENDED)
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py --use-finviz
2. Limit FMP-Only Candidates
python3 skills/dividend-growth-pullback-screener/scripts/screen_dividend_growth_rsi.py --max-candidates 40
3. Wait 24 Hours for Rate Limit Reset
4. Upgrade to FMP Paid Plan
Note: FINVIZ Elite subscription ($40/month) + FMP free tier is more cost-effective than FMP paid plans for this use case.
Issue: "Insufficient price data for RSI calculation"
Cause: Stock has less than 30 days of trading history (IPO or inactive)
Solution: Script automatically skips stocks with insufficient data. No action needed.
Pre-Screening Context:
Post-Screening Analysis:
Example Workflow:
1. Market News Analyst: "Market pulled back 5% this week on Fed hawkish comments"
2. Breadth Chart Analyst: Confirms market oversold (S&P breadth weak)
3. Dividend Growth Pullback Screener: Finds 8 quality dividend growers with RSI <35
4. Technical Analyst: Analyze top 3 candidates for support levels and entry timing
5. Execute: Enter scaled positions with 6-12 month time horizon
screen_dividend_growth_rsi.py - Main screening script
rsi_oversold_strategy.md - RSI indicator explanation
dividend_growth_compounding.md - Dividend growth mathematics
fmp_api_guide.md - API usage documentation
Disclaimer: This screening tool is for informational purposes only. Past dividend growth does not guarantee future performance. Conduct thorough due diligence before making investment decisions. RSI oversold conditions do not guarantee price reversals - stocks can remain oversold for extended periods.