Hi,
Please help me with a screener with these conditions:
1. Price crossing over 2 x Supertrends e.g (1:2) and (3:4)
2. Price trading above 200ma
Regards,
Segie
JSParticipant
Senior
Hi Segie,
Is (1:2) and (3:4) the same as SuperTrend[1,2] and SuperTrend[3,4] ?
Hi JS,
Yes.
I am just using arbitrary figures. You can use any. I will adapt it.
Thanks,
Segie
JSParticipant
Senior
Hi Segie,
Try this one:
ST1=SuperTrend[1,2]
ST2=SuperTrend[3,4]
MA200=Average[200](Close)
C1=Close>ST1 and Close[1]<ST1[1]
C2=Close>ST2 and Close[1]<ST2[1]
C3=Close>MA200
Signal=C1 and C2 and C3
Screener[Signal]
Here you have another example:
ST1=SuperTrend[1,2]
ST2=SuperTrend[3,4]
MA200=Average[200](Close)
Screener[ST1 crosses over ST2 and Close>MA200]
Looking to screen when price double cross over both Supertrends (close). Please see e.g in the attached picture where price crosses both Supertrends (black lines).
Background turns from red to green. That’s the point of screening I’m looking for.
Above code provides later confirmation
Thanks,
Segie
JSParticipant
Senior
When I use my code I don’t see that the signal is late…?