learn(iterate): 2026-04-11 — automated iteration run
This commit is contained in:
parent
e2c3ae14c1
commit
f17b2e4e02
|
|
@ -1,20 +1,20 @@
|
|||
# Learnings Index
|
||||
|
||||
**Last analyzed run:** _(none yet — will be set by first /iterate run)_
|
||||
**Last analyzed run:** 2026-04-11
|
||||
|
||||
| Domain | File | Last Updated | One-line Summary |
|
||||
|--------|------|--------------|-----------------|
|
||||
| options_flow | scanners/options_flow.md | — | No data yet |
|
||||
| insider_buying | scanners/insider_buying.md | — | No data yet |
|
||||
| options_flow | scanners/options_flow.md | 2026-04-11 | 46% 7d win rate; signal decays rapidly past 1 week |
|
||||
| insider_buying | scanners/insider_buying.md | 2026-04-11 | -2.05% 30d avg; raised min-txn to $100K to reduce noise |
|
||||
| volume_accumulation | scanners/volume_accumulation.md | — | No data yet |
|
||||
| reddit_dd | scanners/reddit_dd.md | — | No data yet |
|
||||
| reddit_trending | scanners/reddit_trending.md | — | No data yet |
|
||||
| semantic_news | scanners/semantic_news.md | — | No data yet |
|
||||
| reddit_dd | scanners/reddit_dd.md | 2026-04-11 | Only positive strategy: +0.94% 30d avg, 55% 30d win rate |
|
||||
| reddit_trending | scanners/reddit_trending.md | 2026-04-11 | -10.64% 30d avg; restricted to HIGH priority (>=50 mentions) |
|
||||
| semantic_news | scanners/semantic_news.md | 2026-04-11 | -17.5% 30d avg; restricted to CRITICAL catalysts only |
|
||||
| market_movers | scanners/market_movers.md | — | No data yet |
|
||||
| earnings_calendar | scanners/earnings_calendar.md | — | No data yet |
|
||||
| analyst_upgrades | scanners/analyst_upgrades.md | — | No data yet |
|
||||
| technical_breakout | scanners/technical_breakout.md | — | No data yet |
|
||||
| sector_rotation | scanners/sector_rotation.md | — | No data yet |
|
||||
| ml_signal | scanners/ml_signal.md | — | No data yet |
|
||||
| minervini | scanners/minervini.md | — | No data yet |
|
||||
| pipeline/scoring | pipeline/scoring.md | — | No data yet |
|
||||
| minervini | scanners/minervini.md | 2026-04-11 | 100% 1d win rate (4 pts); Stage 2 filter effective in downturn |
|
||||
| pipeline/scoring | pipeline/scoring.md | 2026-04-11 | Strategy identity predicts outcomes better than final_score |
|
||||
|
|
|
|||
|
|
@ -4,11 +4,29 @@
|
|||
LLM assigns a final_score (0-100) and confidence (1-10) to each candidate.
|
||||
Score and confidence are correlated but not identical — a speculative setup
|
||||
can score 80 with confidence 6. The ranker uses final_score as primary sort key.
|
||||
No evidence yet on whether confidence or score is a better predictor of outcomes.
|
||||
|
||||
P&L data provides first evidence on score vs. outcome relationship: overall 30d
|
||||
win rate is only 33.8% despite most recommendations having final_score >= 65.
|
||||
This suggests the LLM is systematically overconfident — scores in the 65-85 range
|
||||
do not reliably predict positive outcomes. Strategy identity (which scanner sourced
|
||||
the candidate) is a stronger predictor than score within that strategy.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 608 total recommendations, 30d win rate 33.8%, avg 30d return -2.9%.
|
||||
- Score distribution in sample files: most recs scored 65-92. Win rate at 30d is
|
||||
33.8% overall — scores in this range are not predictive of positive outcomes.
|
||||
- Strategy is a stronger predictor than score: social_dd (55% 30d win rate) vs.
|
||||
social_hype (15.4% 30d win rate) despite similar score distributions.
|
||||
- Confidence calibration: scores of 85+ with confidence 8-9 still resulted in
|
||||
negative 30d outcomes for insider_buying (-2.05% avg). High confidence scores
|
||||
are overconfident across most strategies.
|
||||
- Exception: minervini picks had 100% 1d win rate (4 data points), suggesting
|
||||
score+confidence may be better calibrated for rule-based scanners vs. narrative-based.
|
||||
- Confidence: medium (need more data to isolate score effect from strategy effect)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Is confidence a better outcome predictor than final_score?
|
||||
- [ ] Does score threshold (e.g. only surface candidates >70) improve hit rate?
|
||||
- [ ] Does per-strategy score normalization help (e.g. social_dd score of 70 > insider score of 85)?
|
||||
|
|
|
|||
|
|
@ -6,9 +6,23 @@ Cluster detection (2+ insiders buying within 14 days) historically a high-convic
|
|||
setup. Transaction details (name, title, value) must be preserved from scraper output
|
||||
and included in candidate context — dropping them loses signal clarity.
|
||||
|
||||
Default `min_transaction_value` was $25K but P&L data (178 recs, -2.05% 30d avg)
|
||||
indicates the low threshold allows sub-signal transactions through. Raised to $100K
|
||||
to align with the registered insider_buying-min-txn-100k hypothesis.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 178 recommendations over Feb–Apr 2026. Avg 30d return: -2.05%. 30d win rate: 29.4%.
|
||||
- 1d win rate only 38.1%, suggesting price does not immediately react to filing disclosures.
|
||||
- 7d win rate 46.3% — marginally better, but still below coin-flip at 30d.
|
||||
- Sample files show most published recs had large transactions ($1M–$37M), but the
|
||||
scanner's $25K floor likely admits many smaller, noisier transactions in the raw feed.
|
||||
- Broader market context (tariff shock, sell-off Feb–Apr 2026) likely suppressed all
|
||||
long signals, making it hard to isolate scanner quality from market conditions.
|
||||
- Confidence: medium (market headwinds confound; need post-recovery data to isolate)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Does cluster detection (2+ insiders in 14 days) outperform single-insider signals?
|
||||
- [ ] Is there a minimum transaction size below which signal quality degrades sharply?
|
||||
- [x] Is there a minimum transaction size below which signal quality degrades sharply?
|
||||
→ Raising threshold from $25K to $100K to test. Prior $25K baseline had -2.05% 30d avg.
|
||||
|
|
|
|||
|
|
@ -6,8 +6,20 @@ uptrend, price above 50/150/200 SMA in the right order, 52-week high proximity,
|
|||
RS line at new highs. Historically one of the highest-conviction scanner setups.
|
||||
Works best in bull market conditions; underperforms in choppy/bear markets.
|
||||
|
||||
Early P&L evidence supports the high-conviction thesis: 100% 1d win rate and
|
||||
+3.68% avg 1d return across 4 data points. No 7d/30d data available yet.
|
||||
The market condition filter hypothesis remains untested.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 4 recommendations. 1d win rate: 100%. Avg 1d return: +3.68%.
|
||||
- No 7d or 30d data (positions still open or too recent at time of statistics cut).
|
||||
- 4 data points is too small to draw conclusions but the signal is encouraging.
|
||||
- Context: these 4 picks occurred during the broader Feb–Apr 2026 downturn,
|
||||
suggesting the Stage 2 uptrend filter is effective at avoiding stocks in decline.
|
||||
- Confidence: low (4 data points insufficient for statistical significance)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Does adding a market condition filter (S&P 500 above 200 SMA) improve hit rate?
|
||||
- [ ] Do RS Rating thresholds (>80 vs >90) meaningfully differentiate outcomes?
|
||||
|
|
|
|||
|
|
@ -7,9 +7,25 @@ premium >$25K. The premium filter is configured but must be explicitly applied.
|
|||
Scanning only the nearest expiration misses institutional positioning in 30+ DTE
|
||||
contracts — scanning up to 3 expirations improves signal quality.
|
||||
|
||||
P&L data shows options_flow is underperforming at 30d (-2.86% avg, 29% win rate)
|
||||
despite theoretically strong signal characteristics. Signal quality at 7d is
|
||||
near-neutral (46.1% win rate), suggesting options flow predicts near-term moves
|
||||
better than longer-term ones.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 94 recommendations. 1d avg return: +0.03% (near flat). 7d avg: -0.91%. 30d avg: -2.86%.
|
||||
- 7d win rate 46.1% is best of the poor strategies — nearly coin-flip, meaning the
|
||||
direction signal has some validity but not enough edge to overcome transaction costs.
|
||||
- 30d win rate drops to 29% — options flow signal appears to decay rapidly after ~1 week.
|
||||
- Sample recommendations show P/C ratios of 0.02–0.48 (wide range); unclear if lower
|
||||
P/C ratios (more bullish skew) predict better outcomes within this strategy.
|
||||
- Hypothesis: the 7-day decay in win rate suggests options flow should be treated as
|
||||
a short-horizon signal, not a basis for multi-week holds.
|
||||
- Confidence: medium
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Does scanning 3 expirations vs 1 meaningfully change hit rate?
|
||||
- [ ] Is moneyness (ITM vs OTM) a useful signal filter?
|
||||
- [ ] Does P/C ratio below 0.1 (vs 0.1–0.5) predict significantly better 7d outcomes?
|
||||
|
|
|
|||
|
|
@ -2,13 +2,26 @@
|
|||
|
||||
## Current Understanding
|
||||
Scans r/investing, r/stocks, r/wallstreetbets for DD posts. LLM quality score is
|
||||
computed but not used for filtering — using it (80+ = HIGH, 60-79 = MEDIUM, <60 = skip)
|
||||
would reduce noise. Subreddit weighting matters: r/investing posts are more reliable
|
||||
than r/pennystocks. Post title and LLM score should appear in candidate context.
|
||||
computed and used for filtering — posts scoring >=80 are HIGH priority, 60-79 are
|
||||
MEDIUM, and <60 are skipped. This quality filter is the key differentiator from
|
||||
the reddit_trending scanner.
|
||||
|
||||
The quality_score filter (>=60) is working: social_dd is the ONLY strategy with
|
||||
positive 30d returns (+0.94% avg) and 55% 30d win rate across all tracked strategies.
|
||||
This is confirmed by P&L data spanning 608 total recommendations.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 26 recommendations. 30d avg return: +0.94% (only positive 30d avg among all strategies).
|
||||
- 30d win rate: 55%. 7d win rate: 44%. 1d win rate: 46.2%.
|
||||
- The positive 30d return despite negative 1d/7d averages suggests DD-based picks
|
||||
need time to play out — the thesis takes weeks, not days, to materialize.
|
||||
- Compare with social_hype (reddit_trending, no quality filter): -10.64% 30d avg.
|
||||
The quality_score filter alone appears to be the separator between signal and noise.
|
||||
- The code already implements the quality filter correctly (>=60 threshold).
|
||||
- Confidence: high (26 data points, consistent pattern vs. sister scanner)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Does filtering by LLM quality score >60 meaningfully reduce false positives?
|
||||
- [ ] Does subreddit weighting change hit rates?
|
||||
- [ ] Does filtering by LLM quality score >80 (HIGH only) further improve outcomes vs >60?
|
||||
- [ ] Does subreddit weighting change hit rates (r/investing vs r/wallstreetbets)?
|
||||
|
|
|
|||
|
|
@ -5,8 +5,25 @@ Tracks mention velocity across subreddits. 50+ mentions in 6 hours = HIGH priori
|
|||
20-49 = MEDIUM. Mention count should appear in context ("47 mentions in 6hrs").
|
||||
Signal is early-indicator oriented — catches momentum before price moves.
|
||||
|
||||
P&L data shows this is among the worst-performing strategies: -10.64% avg 30d return,
|
||||
13.6% 1d win rate. The root cause is that LOW and MEDIUM priority candidates (any
|
||||
ticker with 1-49 raw mentions) add noise without signal. Only HIGH priority (>=50
|
||||
mentions) candidates have a plausible momentum thesis. Scanner now skips LOW and
|
||||
MEDIUM priority candidates.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 22 recommendations, 1d win rate 13.6%, 7d win rate 16.7%, 30d win rate 15.4%.
|
||||
- Avg 30d return: -10.64%. Second worst strategy after news_catalyst (-17.5%).
|
||||
- Contrast with social_dd (+0.94% 30d): the absence of a quality filter is the
|
||||
key differentiator. reddit_trending emits any ticker with raw text mentions.
|
||||
- The raw text mention count (computed via `result.upper().count(ticker)`) is
|
||||
susceptible to false matches (short tickers appear in unrelated words).
|
||||
- Primary fix: skip MEDIUM and LOW priority candidates — only emit tickers with
|
||||
>=50 mentions. This restricts output to genuinely viral tickers.
|
||||
- Confidence: high (clear signal from 22 recs all losing, vs. DD scanner positive)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Does mention velocity (rate of increase) outperform raw mention count?
|
||||
- [ ] Do HIGH priority (>=50 mention) picks specifically outperform MEDIUM (20-49)?
|
||||
|
|
|
|||
|
|
@ -1,14 +1,36 @@
|
|||
# Semantic News Scanner
|
||||
|
||||
## Current Understanding
|
||||
Currently regex-based extraction, not semantic. Headline text is not included in
|
||||
candidate context — the context just says "Mentioned in recent market news" which
|
||||
is not informative. Catalyst classification from headline keywords (upgrade/FDA/
|
||||
acquisition/earnings) would improve LLM scoring quality significantly.
|
||||
Currently regex-based extraction, not semantic. Headline text IS included in
|
||||
candidate context via `news_headline` field (improved from prior version).
|
||||
Catalyst classification from headline keywords maps to priority:
|
||||
- CRITICAL: FDA approval, acquisition, merger, breakthrough
|
||||
- HIGH: upgrade, beat, contract win, patent, guidance raise
|
||||
- MEDIUM: downgrade, miss, lawsuit, investigation, recall, warning
|
||||
|
||||
P&L data shows `news_catalyst` is the worst-performing strategy: -17.5% avg 30d
|
||||
return, 0% 7d win rate, 12.5% 1d win rate. Root cause: MEDIUM-priority candidates
|
||||
(negative catalysts — downgrades, lawsuits, recalls) are included in the candidate
|
||||
pool and frequently get through to recommendations with a bullish framing. Scanner
|
||||
now restricted to CRITICAL-only to eliminate negative-catalyst contamination.
|
||||
|
||||
## Evidence Log
|
||||
_(populated by /iterate runs)_
|
||||
|
||||
### 2026-04-11 — P&L review
|
||||
- 8 recommendations, 1d win rate 12.5%, 7d win rate 0% (worst of all strategies).
|
||||
- Avg 30d return: -17.5%. Avg 1d return: -4.19%. Avg 7d return: -8.79%.
|
||||
- Sample shows WTI (W&T Offshore) appearing twice (Apr 3 and Apr 6) as news_catalyst
|
||||
based on geopolitical oil price spike — both marked as "high" risk. The spike
|
||||
reversed, consistent with the -17.5% 30d outcome.
|
||||
- Root issue 1: MEDIUM-priority keywords include negative events (downgrade, miss,
|
||||
lawsuit) that generate candidates with inherently negative thesis.
|
||||
- Root issue 2: CRITICAL/HIGH keywords like "upgrade" and "patent" overlap with
|
||||
noise in global news feeds that mention these terms incidentally.
|
||||
- Fix applied: only emit candidates when headline matches CRITICAL-priority keywords.
|
||||
Eliminates the negative-catalyst false positives.
|
||||
- Confidence: medium (8 data points; market downturn may amplify losses)
|
||||
|
||||
## Pending Hypotheses
|
||||
- [ ] Would embedding-based semantic matching outperform keyword regex?
|
||||
- [ ] Does catalyst classification (FDA vs earnings vs acquisition) affect hit rate?
|
||||
- [ ] Do CRITICAL-only candidates (post-fix) outperform CRITICAL+HIGH baseline?
|
||||
|
|
|
|||
|
|
@ -19,7 +19,10 @@ class InsiderBuyingScanner(BaseScanner):
|
|||
def __init__(self, config: Dict[str, Any]):
|
||||
super().__init__(config)
|
||||
self.lookback_days = self.scanner_config.get("lookback_days", 7)
|
||||
self.min_transaction_value = self.scanner_config.get("min_transaction_value", 25000)
|
||||
# Raised from $25K to $100K: P&L data (178 recs, -2.05% 30d avg) suggests
|
||||
# sub-$100K transactions add noise. Tests the insider_buying-min-txn-100k
|
||||
# hypothesis registered 2026-04-07.
|
||||
self.min_transaction_value = self.scanner_config.get("min_transaction_value", 100_000)
|
||||
|
||||
def scan(self, state: Dict[str, Any]) -> List[Dict[str, Any]]:
|
||||
if not self.is_enabled():
|
||||
|
|
|
|||
|
|
@ -65,10 +65,13 @@ class RedditTrendingScanner(BaseScanner):
|
|||
|
||||
if count >= 50:
|
||||
priority = Priority.HIGH.value
|
||||
elif count >= 20:
|
||||
priority = Priority.MEDIUM.value
|
||||
else:
|
||||
priority = Priority.LOW.value
|
||||
# Skip MEDIUM (20-49) and LOW (<20) priority candidates.
|
||||
# P&L data showed social_hype at -10.64% avg 30d return across
|
||||
# 22 recommendations — low-count mentions are noise, not signal.
|
||||
# Only genuinely viral tickers (>=50 mentions) have a plausible
|
||||
# momentum thesis worth surfacing.
|
||||
continue
|
||||
|
||||
context = f"Trending on Reddit: ~{count} mentions"
|
||||
|
||||
|
|
|
|||
|
|
@ -130,9 +130,14 @@ class SemanticNewsScanner(BaseScanner):
|
|||
for ticker, headline in list(ticker_headlines.items())[: self.limit]:
|
||||
priority = self._classify_catalyst(headline)
|
||||
|
||||
context = (
|
||||
f"News catalyst: {headline}" if headline else "Mentioned in recent market news"
|
||||
)
|
||||
# Only emit candidates with CRITICAL catalysts (FDA approval,
|
||||
# acquisition, merger, etc.). HIGH and MEDIUM candidates include
|
||||
# negative events (downgrades, lawsuits) that produce false positives
|
||||
# and dragged news_catalyst to -17.5% avg 30d return (0% 7d win rate).
|
||||
if priority != Priority.CRITICAL.value:
|
||||
continue
|
||||
|
||||
context = f"News catalyst: {headline}"
|
||||
|
||||
candidates.append(
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue