Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 12/30/2004 Posts: 26
|
I have been trying to set up a back test to look for stocks with the closing price lower then the open 3 days in a row and then buy on the next after the closing price is higher then opening and I can't seem to make it work.(blocks program)Help!
Kirk
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
I think the attached is what you are looking for. Let me know if I am right.
Save it in the following folder: \My Documents\Block Files\Tool Parts\Strategy Conditions Once there, you can add it in your Strategy via the ADD CONDITION button and choosing MY COMPUTER.
Attachments: winsborrow up after downs.scond - 9 KB, downloaded 761 time(s).
- Craig Here to Help!
|
|
Registered User Joined: 12/30/2004 Posts: 26
|
Yes it works
Thanks
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
My pleasure!
- Craig Here to Help!
|
|
Registered User Joined: 11/16/2015 Posts: 105
|
I am trying to use this easy scan and I'm getting an error message so can someone give me the correct formula
UP 5 Day In Row a couple of my Skin's that ever in my condition Library I'm not working I'm getting all kinds of error message what should I do reinstall tc2000 or what
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The following is for TC2000 v17 and assumes "up" is based on net change (close is above the previous close).
TrueInRow(C > C1, 5) = 5
You would need to check each bar individually in earlier versions of TC2000.
C > C1 AND C1 > C2 AND C2 > C3 AND C3 > C4 AND C4 > C5
If you mean the close is above the open for "up" instead, then the following should work for TC2000 v17.
TrueInRow(C > O, 5) = 5
And the following for earlier versions of TC2000.
C > O AND C1 > O1 AND C2 > O2 AND C3 > O3 AND C4 > O4
If you are getting error messages, then please contact technical support.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |