Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 4/5/2019 Posts: 6
|
Dear Sir or Madam,
Would you help me to code the following indicator into TC2000 please?
High[Today]>=Highest(High,10) and Close[Today]<High[Yesterday] and Close[Today]<Open[Today];
Thank you very much.
Regards,
Gemini
|
|
Registered User Joined: 9/17/2010 Posts: 484
|
H>=H10 AND C<H1 AND C<O
although you might want
H>H10.1 AND C<H1 and C<O if you are comparing High to theprevious 10 days, ie eXcluding today
|
|
Registered User Joined: 4/5/2019 Posts: 6
|
QUOTE (bcochrane)
H>=H10 AND C<H1 AND C<O
although you might want
H>H10.1 AND C<H1 and C<O if you are comparing High to theprevious 10 days, ie eXcluding today
#
Hi, I am afraid none of them works. I will rephrase the conditions in plin english.
High of today greater than the highest high over the last 10 days (whichever day occurred) AND close of today lower than yesterday high AND close of today lower than open of today.
Thank you.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following condition formula.
C < O AND C < H1 AND H > MAXH10.1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 9/17/2010 Posts: 484
|
Sorry, forgot the MaxH
|
|
Registered User Joined: 4/5/2019 Posts: 6
|
Thanks a lot everyone :)
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
test
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
test
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
test
|
|
Guest-1 |