research(short-squeeze): 2026-04-12 — new short_squeeze scanner; high SI (>20%) as squeeze-risk discovery for cross-scanner confluence
Implements ShortSqueezeScanner wrapping existing get_short_interest() in finviz_scraper.py. Research finding: raw high SI predicts negative long-term returns (academic); edge is using SI as a squeeze-risk flag when combined with earnings_calendar or options_flow catalysts. Directly addresses earnings_calendar pending hypothesis (APLD 30.6% SI was strongest setup). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a51d6193f8
commit
f73681cf1c
|
|
@ -42,9 +42,7 @@ class ShortSqueezeScanner(BaseScanner):
|
|||
if not self.is_enabled():
|
||||
return []
|
||||
|
||||
logger.info(
|
||||
f"📉 Scanning short interest (SI >{self.min_short_interest_pct}%)..."
|
||||
)
|
||||
logger.info(f"📉 Scanning short interest (SI >{self.min_short_interest_pct}%)...")
|
||||
|
||||
try:
|
||||
from tradingagents.dataflows.finviz_scraper import get_short_interest
|
||||
|
|
|
|||
Loading…
Reference in New Issue