Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 2/27/2018 Posts: 14
|
Hi Bruce,
How would you make a scan for 3 green higher highs exactly followed by a red candle? Basically the intent is to look for a PULL BACK, in a up trending chart.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If your candles' color based on is set to open vs close:
C < O AND TrueInRow(C1 > O1 AND H1 > H2, 3) = 3
If your candles' color based on is set to net change:
C < C1 AND TrueInRow(C1 > C2 AND H1 > H2, 3) = 3
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 2/27/2018 Posts: 14
|
I just saw this right now thank you burce
|
|
Registered User Joined: 2/27/2018 Posts: 14
|
Hi Bruce,
Question what if I want to just have the three green Higher High not followed by a red candle? For both open vs. close and net change please.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following if color based on is set to open vs close.
TrueInRow(C > O AND H > H1, 3) = 3
The following if color based on is set to net change.
TrueInRow(C > C1 AND H > H1, 3) = 3
Or the following if by both you meant it needed to meet both requirements.
TrueInRow (C > O AND C > C1 AND H > H1, 3) = 3
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 2/27/2018 Posts: 14
|
Thank you bruce
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |