Streak Scanner creation help

I need to create scanner for the below requirement
Help me to create this one

  1. Price not more than 2 percent below 52 week high

  2. Price closing above last swing high

3.Strong bullish candle

  1. Close crosses above last five day high

  2. Above key moving averages (20,50,200)

  3. SMA Trend rising

  4. Ensures institutional participation or stronger volume

  5. Avoid penny stocks below Rs.100

9.Avoid illiquid traps

10.Price outperforming Nifty 50

@Streak

Hi @Vkpmk_K

We have shared scanner link created as per your requirement based on our understanding. Refer the link below:
https://www.streak.tech/scanner/103457

Note: Requirements such as Price closing above last swing high and Avoid illiquid traps cannot be implemented as these are discretionary.

For further queries, you can write to [email protected] and the team shall help you.

Hope this helps.

1 Like

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

@Vkpmk_K Please write to [email protected] and the team shall assist you in creating the scanner.