JozoParticipant
Junior
Hi, I would value your assistance.
I have not been able to configure a screener to identify;
FOR EXAMPLE
1. Stocks/etfs reached (variable) 13 week high; within (variable) last 7 days; and close is below (variable) 3 (variable) EMA within last (variable) 3 days.
“Variable” here means can choose any instrument, period or indicator
Any assistance will be much appreciated
There you go:
Timeframe(Weekly)
Whigh = highest[13](high)
Timeframe(Daily)
c1 = summation[7](close >= Whigh)
c2 = summation[3](close < average[3,0](close))
Timeframe(default)
Result = c1 AND c2
SCREENER[Result]
JozoParticipant
Junior
Thank you so much for being so prompt!