TradingAgents/tradingagents/dataflows/discovery/scanners
Youssef Aitousarrah 719a2d3f4e fix(scanners): rank by signal quality before limiting in 3 more scanners
Same issue as options_flow: early exit on candidate count discards strong
signals that happen to be later in iteration order.

insider_buying: Dict iteration order matched OpenInsider HTML scrape order,
not signal quality. Now scores by cluster buys + C-suite + dollar value,
then takes top N.

technical_breakout: Stopped at limit*2 in file order despite data already
being batch-downloaded (zero API cost to check all). Removed early exit,
scan full universe, sort by volume_multiple.

sector_rotation: Checked laggards in arbitrary dict order, spending API
calls on random tickers. Now sorts by most-negative 5d return first so
the strongest laggard candidates are checked before hitting the budget.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-06 13:46:21 -07:00
..
__init__.py feat: improve all 9 scanners and add 3 new scanners 2026-02-20 08:36:18 -08:00
analyst_upgrades.py Update 2026-02-20 08:38:15 -08:00
earnings_calendar.py feat: improve all 9 scanners and add 3 new scanners 2026-02-20 08:36:18 -08:00
insider_buying.py fix(scanners): rank by signal quality before limiting in 3 more scanners 2026-04-06 13:46:21 -07:00
market_movers.py feat: improve all 9 scanners and add 3 new scanners 2026-02-20 08:36:18 -08:00
ml_signal.py fix(discovery): fix three scanner hang/validation bugs found in ranker_debug.log 2026-02-20 22:35:42 -08:00
options_flow.py fix(options_flow): scan full universe before applying limit, rank by signal strength 2026-04-06 13:46:21 -07:00
reddit_dd.py Update 2026-02-20 08:38:15 -08:00
reddit_trending.py feat: improve all 9 scanners and add 3 new scanners 2026-02-20 08:36:18 -08:00
sector_rotation.py fix(scanners): rank by signal quality before limiting in 3 more scanners 2026-04-06 13:46:21 -07:00
semantic_news.py Update 2026-02-20 08:38:15 -08:00
technical_breakout.py fix(scanners): rank by signal quality before limiting in 3 more scanners 2026-04-06 13:46:21 -07:00
volume_accumulation.py Update 2026-02-20 08:38:15 -08:00