Registered User Joined: 11/19/2004 Posts: 130
|
Worden:
tails 55%+
(O >= (((H - L) * .55) + L)) AND (C >= (((H - L) * .55) + L)) AND
(O1 >= (((H1 - L1) * .55) + L1)) AND (C1 >= (((H1 - L1) * .55) + L1))
The above formula you gave me some time ago works very well for bottoming tails. I want to invert it and have the 55%+ tails on the top of the candlestick instead of the bottom as this formula shows. It seems easy enough to invert it, I tried several times, but to no avail.
Please give me the formula for topping tails.
Thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following:
H - (O + C + ABS(O - C)) / 2 >= .55 * (H - L) AND H > L AND
H1 - (O1 + C1 + ABS(O1 - C1)) / 2 >= .55 * (H1 - L1) AND H1 > L1
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Boolean PCFs for Candlestick Patterns
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 11/19/2004 Posts: 130
|
Bruce
I tried the formula, and it works well
Once again you are the Doctor
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|