Hello,
Can you help me with following. I would like to see all the stocks on daily time frame that meet the following criteria.
- De EMA50 is rising
- The last baris an inside bar compared to day before. (The whole bar is totally within the high-low range of bar day before)
- The last bar is also the narrowest range bar (high-low) over the last seven trading days
Thanks a lot
gr Marco
JSParticipant
Veteran
Hi Marco,
Hereby the screener…
Count=0
EMA50=ExponentialAverage[50](Close)
C1=EMA50>EMA50[7]
C2=High<High[1] and Low>Low[1]
For i=1 to 7
If Range<Range[i] then
Count=Count+1
EndIf
Next
C3=Count=7
Screener[C1 and C2 and C3]
Thanks JS for the quick response:-)