wolfParticipant
Junior
Hi, I’m trying to make a screener of the FTSE 100 and FTSE 250, that will search for stocks that have gapped up/gapped down at the start of the day and then the EMA 20 and 100 have crossed during that day.
Thank you in advance
w0lf
I’m no expert but wouldn’t it be something like this for the EMA’s:
timeframe(Daily)
EMA20 = ExponentialAverage[20] (close)
EMA100 = ExponentialAverage[100] (close)
Condition = (EMA20 > EMA100)
SCREENER[Condition]
I’ve no idea how to code a gap up / down.
I would like to know however, how to code for an EMA crossover within the previous 3 days – if anyone out there knows.