Hi all I am wanting to add a condition to my current scan but cannot figure out how to do it – can anyone figure it out? thanks in advance
I am wanting to add this line:
close>0.70*highest[150](high)
______________________________________
to the below scan:
pricerange = close>=0.79 and close<=1.20
gain =(close/close[70]*100)-100
screener[pricerange and gain>0](gain)
JSParticipant
Veteran
Hi,
For example, you can precede the first conditions with C1 where C1 stands for Condition 1…
TimeFrame(Daily)
C1=Close>0.70*Highest[150](High)
C2=Close>=0.79 and Close<=1.20
C3=(Close/Close[70]*100)-100>0
Screener[C1 and C2 and C3]((Close/Close[70]*100)-100 as "Gain")