Gold Customer
Joined: 10/14/2004 Posts: 202
|
Please write PCF for stocks trading 25% above 52 week low and >200 DMA on higher volume over last 5 trading days.
Then, PCF where price reaches 80% above 52 week low and volume trending down over last 5 trading days.
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you mean 25% above the low:
C >= 1.25 * MAXH252 AND C > AVGC200 AND AVGV5 > AVGV195.5
If you mean 25% of the range above the low:
STOC252 >= 25 AND C > AVGC200 AND AVGV5 > AVGV195.5
If you mean 80 above the low:
C >= 1.8 * MINL252 AND V < V5 AND FAVG(V, 5) < AVG(V, 5)
If you mean 80% of the range above the low:
STOC252 >= 80 AND V < V5 AND FAVG(V, 5) < AVG(V, 5)
The volume interpretations are quite different based on the slightly different wording used. If the results aren't what you want, you might want to provide some additional clarification.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|