Thanks for your earliest reply.
I want to create another scanner with more hybrid approach. would you help me to create that one. Please find the details below
// CONDITION GROUP 1: Trend Strength
// ──────────────────────────────────────
Close(0) higher than SMA(close, 50, 0) * 1.05 and
Close(0) higher than SMA(close, 200, 0) * 1.10 and
SMA(close, 20, 0) higher than SMA(close, 50, 0) and
SMA(close, 50, 0) higher than SMA(close, 200, 0)
// ──────────────────────────────────────
// CONDITION GROUP 2: Position in Range
// ──────────────────────────────────────
Close(0) higher than equal to Period max(252, High(-1)) * 0.75 and
Close(0) lower than equal to Period max(252, High(-1)) * 0.92
// ──────────────────────────────────────
// CONDITION GROUP 3: Near 20 SMA
// ──────────────────────────────────────
Close(0) higher than SMA(close, 20, 0) * 0.98 and
Close(0) lower than SMA(close, 20, 0) * 1.05
// ──────────────────────────────────────
// CONDITION GROUP 4: Bullish Candle & Volume
// ──────────────────────────────────────
Close(0) higher than Open(0) and
Close(0) - Open(0) higher than equal to ( High(0) - Low(0) ) * 0.65 and
Volume(0) higher than SMA(volume, 20, 0) * 1.2 and
Volume(0) higher than Volume(-1)
// ──────────────────────────────────────
// CONDITION GROUP 5: RSI Momentum
// ──────────────────────────────────────
RSI(14, 0) higher than 45 and
RSI(14, 0) lower than 65 and
RSI(14, 0) higher than RSI(14, -1) and
RSI(14, 0) higher than RSI(14, -2)
// ──────────────────────────────────────
// CONDITION GROUP 6: Final Filters
// ──────────────────────────────────────
Period min(3, Close(0) - Close(-1)) higher than 0 and
Close(0) higher than 100 and
ADX(14, 0) higher than 18
// ──────────────────────────────────────
// CONDITION GROUP 7: Consolidation Check
// ──────────────────────────────────────
Period max(10, High(0)) - Period min(10, Low(0)) lower than Period max(30, High(-11)) * 0.12