Need coding for this

low is above upper EMA envelope(25,1.5)
and close is above EMA(200)

and close is between 20ema and 200ema
and ADX (10) is between 22 and 40
show stocks where Average Volume(90) is above 300000

hElLO tRaDeR,

SCRIPT:

LOW > MAET(25, EXPONENTIAL, 1.5) AND 
CLOSE > EMA(CLOSE,200) AND 
CLOSE < EMA(CLOSE,20) AND 
ADX(10) > 22 AND ADX < 40 AND 
SMA(VOLUME,90) > 300000 

Modified for 1st candle only:

REF(LOW,1) < REF(MAET(25, EXPONENTIAL, 1.5), 1) AND 
LOW > MAET(25, EXPONENTIAL, 1.5) AND 
CLOSE > EMA(CLOSE,200) AND 
CLOSE < EMA(CLOSE,20) AND 
ADX(10) > 22 AND ADX < 40 AND 
SMA(VOLUME,90) > 300000

THANK YOU,
IN THIS CODE ,CAN WE SCAN THE FIRST CANDLE WHICH CLOSES ABOVE ENVELOPE?

Updated the main answer.