Gold Customer
Joined: 6/29/2005 Posts: 885
|
How would I write a pcf for a scan as follows
Candle = DOJI as defined by candle body is 30-50% of candle ( really a hammer i guess)
I want to scan for this candle on a weekly chart, to find them for LAST week.
HOw would I write that?
Thanks.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following condition formula set to a weekly time frame if you mean between 30% and 50%.
30 * (H1 - L1) <= 100 * ABS(O1 - C1) AND 100 * ABS(O1 - C1) <= 50 * (H1 - L1)
Or the folloing condition formula set to a weekly time frame. if you mean less than 50%.
100 * ABS(O1 - C1) <= 50 * (H1 - L1)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|