Registered User Joined: 5/29/2006 Posts: 5
|
Is there a PCF which provides a Tail as 3 x's the length of the Body?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following:
H - L >= ABS(C - O) * 4 AND H - L > 0
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Handy PCF example formulas to help you learn the syntax of PCFs! Boolean PCFs for Candlestick Patterns PCFs and EasyScans for Candlestick Patterns
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 5/29/2006 Posts: 5
|
Thanks, that works!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 1/1/2005 Posts: 2,645
|
QUOTE (simpsors) Is there a PCF which provides a Tail as 3 x's the length of the Body?
simpsors,
Bruce's PCF:
H-L >= 4*ABS(C-O)
returns "True" if and only if the sum of the lengths of the two tails is at least 3 times the length of the body.
The PCF:
(H-C>=3*ABS(C-O)AND H-O>=3*ABS(C-O)) OR (O-L>=3*ABS(C-O)AND C-L>=3*ABS(C-O))
returns "True" if and only if the length of at least one of the two tails is at least 3 times the length of the body.
Thanks, Jim Murphy
|