Regler
Country = US;
Price >= 1 and Price <= 5;
MarketCap >= 20m and MarketCap <= 500m;
SharesFloat < 30m;
/* Exclude stocks that already ran 30%+ */
Price <= sma({20d}) * 1.30;
/* Exclude low-quality charts */
Price >= sma({20d}) * 0.90;
rsi() >= 35;
rsi() <= 70;
Volume >= Volume{30d} * 0.5;
Volume <= Volume{30d} * 3;
/*
3-stage breakout + accumulation + short squeeze + VWAP confirmation
*/
(
/* Stage 1: Pre-Move */
(
Volume < Volume{30d} * 0.7
and Price < sma({20d}) * 0.95
and rsi() < 45
)
or
/* Stage 2: Early-Move */
(
Volume >= Volume{30d} * 0.7
and Volume <= Volume{30d} * 1.5
and Price >= sma({20d}) * 0.97
and Price <= sma({20d}) * 1.03
and rsi() >= 42
and rsi() <= 55
)
or
/* Stage 3: Breakout */
(
Volume > Volume{30d} * 2
and Price > sma({20d}) * 1.03
and rsi() >= 55
and rsi() <= 70
)
or
/* Institutional accumulation */
(
Price > sma({20d})
and rsi() >= 45
and rsi() <= 60
and Volume >= Volume{30d} * 0.9
)
or
/* Short-squeeze conditions */
(
Price > sma({20d}) * 1.05
and Volume > Volume{30d} * 2
and rsi() >= 50
and rsi() <= 65
)
or
/* VWAP confirmation (synthetic) */
(
Price > sma({20d}) * 1.01 /* VWAP reclaim */
and Volume >= Volume{30d} * 1 /* volume confirmation */
and rsi() >= 48 /* VWAP ignition zone */
and rsi() <= 65
)
);
order by Volume desc;
limit 300;