Regler
// 1) Only look for US companies
Country = US;
// 2) Ensure price > $1 to avoid extremely illiquid penny stocks
Price > 1 and Price < 15;
// 3) Require at least a $50M market cap for some liquidity
// MarketCap > 50m;
// 4) Make sure average monthly volume is not too low
VolumeAvg1Month > 100k;
// 5) Focus on lower-float stocks
SharesFloat < 50m;
// 6) Look for potential squeeze conditions via strong Short Squeeze or Gamma Squeeze scores
// (ShortSqueezeScore > 80 or GammaSqueezeScore > 80);
// 7) Identify abnormal overall volume (which might capture premarket surges)
Volume > 2 * VolumeAvg1Month;
// 8) (Optional) Look for short-term price momentum as an extra signal of a news-driven move
PriceChange1Week > 6;
// 9) Order by ShortSqueezeScore descending so we see the most extreme cases first
// order by ShortSqueezeScore desc;
// 10) Limit to top 50 results for manageability
limit 50;