Want a scanner with specific parameters within NSE

I want stock screeners with following parameter.

  • 5 minutes candle cross upper Bolinger Band (20,2,0) and RSI(20) within range 60 to 65.
  • 5 minutes candle cross lower Bolinger Band (20,2,0) and RSI(20) within range 40 to 35.

It would be good if we apply it for all NSE stock with specific volume and price range.

NaMasTe TraDeR,

BUY SCRIPT:

CLOSE > BBT(CLOSE, 20, 2, EXPONENTIAL) AND 
RSI(CLOSE, 20) > 60 AND 
RSI(CLOSE, 20) < 65 

SELL SCRIPT:

CLOSE < BBB(CLOSE, 20, 2, EXPONENTIAL) AND 
RSI(CLOSE, 20) > 35 AND 
RSI(CLOSE, 20) < 40