Hello,
I need your help with a code that scans for 4 conditions that happen all at once within the last 10 days. The conditions are:
c1 = rsi[14] crosses over 40
c2 = adx[14] >25
c3 = volume>100000
c4=close>5
Also, what do I need to write at the lowest row if I want the highest volume stocks to show first.
SCREENER[…….] (……)
Thank you
There you go:
c1 = rsi[14] crosses over 40
c2 = adx[14] >25
c3 = volume>100000
c4 = close>5
cx = c1 and c2 and c3 and c4
x = summation[10](cx)
Screener[x](volume)
Above entered as Log 219 here …
Snippet Link Library