Regler
/*
Short Squeeze Setup — Wide Net
────────────────────────────────────────────────────
Maximum universe. No momentum filters —
pure short interest structure only.
Use when:
• Standard screen returns 0–5 results
• Market is in a broad downtrend (shorts winning)
• You want a watchlist to monitor, not immediate entries
Workflow: Pull this list, then manually check each
ticker's price action before acting. Wide Net finds
the setup; your chart review confirms the ignition.
*/
// ── Universe ──────────────────────────────────────
Country = US;
Price > 0.50; // Penny stock floor only
Volume > 25000; // Minimal liquidity check
Assets > 0; // Exclude ETFs
// ── Short Interest Structure ──────────────────────
ShortInterestPercentFloat > 5; // Any meaningful short position
ShortBorrowRate > 5; // Any elevated borrow cost
// ── Display Columns ───────────────────────────────
ShortInterestPercentFloat;
ShortBorrowRate;
DaysToCover;
ShortSqueezeScore;
Price;
Volume;
MarketCap;
order by ShortBorrowRate desc; // Most expensive to hold short = first
limit 100;