Registered User Joined: 10/12/2012 Posts: 5
|
I'm looking for a formula that will return any stock which has had 3 green bars in a row on the daily timeframe. So basically I just want to see stocks that have been up for 3 days straight no more no less. Thank You.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If Color Based On is set to Net Change and you want exactly three green bars (not two and not four):
C > C1 AND C1 > C2 AND C2 > C3 AND C3 <= C4
If Color Based On is set to Open vs Close and you want exactly threen green bars (not two and not four):
C > O AND C1 > O1 AND C2 > O2 AND C3 <= O3
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 10/12/2012 Posts: 5
|
Perfect thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|