Registered User Joined: 9/30/2011 Posts: 788
|
I would like to have two PCF Formula with the following parameters:
1) The signal open on the Pattern Breawayn - Gap Up.
2) The signal open on the Runaway Pattern - Gap Up.
Thank you and goodbye.
raider45
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am going to assume you the breakaway pattern just needs to be above the highest price of some arbitrary number of previous bar... I will use 10 in this case.
L > MAXH10.1
While the runaway needs to not only meet those requirements but be trending up during some arbitrary number of bars.
L > H1 AND H1 = MAXH10.1 AND CountTrue(H1 > H2, 10) >= 8 AND FAVGC10.1 > AVGC10.1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 9/30/2011 Posts: 788
|
Congratulations, thankyou !
Sincerely !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|