Registered User Joined: 2/19/2011 Posts: 33
|
Hello,
If possible, I would like a PCF scan for stocks with a RSI(10) Divergence relative to a previous 50 day minimum low. For example:
-
Stocks that had a minimum 50 day low and a RSI(10) reading of 20 or less, within in the last month (20 days) AND
-
Are now setting a lower price than the previous 50 day minimum low, but with a higher RSI(10) than the first.
Thank You
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Try this formula in version 17. CountTrue is not available in earlier versions.
CountTrue(L1 < MINL50.2 AND RSI10 < 20, 20) > 1 AND L < MINL50.1 AND RSI10 > MIN(RSI10,20)
|
Registered User Joined: 2/19/2011 Posts: 33
|
Thank You, will try it
|