Regler
/* CAPITULATION ENGINE: The Master Net v2.0 (Aggressive) */
Country = US;
Exchange != OTC;
MarketCap > 200m;
Price > 2;
/* 1. SEVERE PANIC FILTER: Must be down at least 10% (was 4%) */
/* This eliminates normal red days and only catches true washouts */
PriceChange1Day <= -10;
/* 2. EXTREME VOLUME ANOMALY: Volume must be at least 3x average (was 1.5x) */
/* This proves that massive institutional liquidation (panic) is happening */
Volume >= VolumeAvg1Month * 3;
/* 3. STRUCTURAL HEALTH (No Zombie Companies) */
/* This ensures the stock isn't in a 1-year death spiral. We want sudden drops, not slow bleeders. */
PriceChange1Year > -40;
/* 4. SORTING: Put the most heavily traded panics at the top */
order by Volume desc;
limit 15;