Regler
// Universe + liquidity
Country = US;
exchange != OTC;
Price > 2;
VolumeAvg1Month > 500K;
// Size band
MarketCap > 300M and MarketCap < 10B;
// "stacked EMAs" and price above them
Price > ema({20d});
ema({20d}) > ema({50d});
ema({50d}) > ema({200d});
// momentum + not overbought
MomentumScore >= 60; // 0–100 composite scale
rsi() < 70;
// analyst support (loosen if you still get 0 results)
AnalystSentimentScore >= 55; // 0–100
AnalystPriceTargetMeanDifferencePercent >= 5; // >= +5% gap to target
limit 100;