Regler
// High-short-float + bullish kick
Price > 1;
ShortInterest > 20; // heavy squeeze fuel
Price > sma({50d}); // still in an up-trend
Volume > Volume{20d} * 2; // today > 2× 20-day avg volume
Exchange != 'OTC'; // liquidity guard — was missing
order by ShortInterest desc;
limit 10;
// ---------------------------------------------------------------
// EXPORT / TRACKING FIELDS
// ---------------------------------------------------------------
// Liquidity / sizing
Price;
Volume;
Volume{20d};
MarketCap;
SharesFloat; // CORRECT field name (not Float)
// Squeeze fuel
ShortInterest;
ShortInterestPercentFloat; // CORRECT field name — more useful than raw SI
DaysToCover;
ShortSqueezeScore;
GammaSqueezeScore;
// Options activity
OptionCallVolume;
OptionPutVolume;
OwnersCallValue; // net call open interest / float — Fintel-specific
// Trend + momentum
sma({50d});
ema({10d});
ema({20d});
rsi();
rsi({3d});
rsi({5d});
roc();
macd();
// Risk / volatility
atr();