Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 11/18/2017 Posts: 56
|
Hi Bruce,
Is it the right conditional formula for new 52 week high?
C >= 1 * MAXH252
Thanks
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
It could be a variety of things. If you just need the high of the current bar to be at the high of the most recent 252 bars.
H = MAXH252
If you need the high of the current bar to above the high of the previous 251 bars.
H > MAXH251.1
If you need the current price to be at the high of the most recent 252 bars.
C = MAXH252
If you need the current price to above the high of the previous 251 bars.
C > MAXH251.1
If you just need the close to be at the highest closing price in the most recent 252 bars.
C = MAXC252
If you need the close to above the highest close of the previous 251 bars.
C > MAXC251.1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 7/23/2016 Posts: 19
|
Hi Bruce, If i was using H = MAXH252 to find 52 weeks highs what would be the opposite to find 52 Week Lows. Sorry for basic question just started trying to create scans in TC2000. I did have a go but getting code error messages.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The low version of H = MAXH252 would be the following.
L = MINL252
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 7/23/2016 Posts: 19
|
Thanks Bruce it was the MIN that was incorrect.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |