Few scanning formula help

Just looking for few very simple scanning formula
Closed day more than 0.75 ATR from yesterday colse price
are close price is the top third of their high daily (day range)
are making a new 15 day high
are trading above their 100 day EMA

Hi Majid,

Don’t forget the scripting course to learn how to build this type of scan yourself:

https://learn.optuma.com/course/introduction-to-scripting/

Try the following:

V1 = CLOSE() > (CLOSE()[1]+ATR(BARS=14, MULT=0.75));
V2 = STOCH(BAR1=1, BAR2=1) > 0.6666;
V3 = HIGH()>HIGHESTHIGH(BARS=15);
V4 = CLOSE() > MA(STYLE=Exponential, CALC=Close, BARS=100);

V1 and V2 and V3 and V3 and V4