Hi,
I would like to get some code so I can scan for 3 lower lows on the daily chart.
Would anyone be able to help me with that?
Cheers
Jack
There you go:
x = (summation[2](low < low[1]) = 2)
Screener[x]
Great, thank you so much!!
Sorry, but perhaps 3 is better instead of 2.
2 compares 3 lows, but does not guarantee that the 3rd one is really lower than its previous one, while 3 compares 4 lows thus making sure ALL 3 are lower than their previous ones.
No it’s okay. Cool thank you Roberto for all your help
I just tried to change it but it’s not working as I am not doing it correctly. I have just started to look at code and have no idea how to write it at all.
Roberto meant as below …
x = (summation[3](low < low[1]) = 3)
Screener[x]
O thank you.
Haha I have been trying to write it all arvo.