Registered User Joined: 5/9/2010 Posts: 144
|
I am trying to find stocks that are have higher closes two weeks in a row. I want to see the low of price reach into the bottom 25% of the prior week's bar range. IF,it goes below. It doesn't count.
C>C1 and C1>C2 and L<=(H1+L1)*.25 And L>L1
I put this on a Custom PCF % True Indicator. It didn't work.
|
Registered User Joined: 10/9/2011 Posts: 485
|
I think your formular for "bottom 25% of the prior week's bar range" needs a correction......
L > l1 and L < L1 + (h1-l1) *0.25
So updating that the final formula would be
C>C1 and C1>C2 and L > l1 and L < L1 + (h1-l1) *0.25
Hope that helps.
|
Registered User Joined: 5/9/2010 Posts: 144
|
Thank you!
|