Registered User Joined: 11/14/2006 Posts: 6
|
I'm playing with a PCF thata I'm hoping will help me spot symetrical pendants and consolidation. My three week formula is:
(MAXH5.15 >= MAXH5.10 >= MAXH5.5) AND (MINL5.15 <= MINL5.10 <= MINL5.5)
I'm attempting to tell the computer to find stocks where the max 5 day high 15 days ago is greater than the max 5 day 10 days ago and the max 5 day high for the last 10 days is greater than the max 5 day high for the latest 5 days. The min portion is the inverse.
I am getting resulting charts, but not all look like what I was expecting. Can anyone tell me if my formula is correct?
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
You need an "AND" between each pair of conditions:
(MAXH5.15>=MAXH5.10ANDMAXH5.10>=MAXH5.5)AND(MINL5.15<=MINL5.10ANDMINL5.10<=MINL5.5)
(I did not test it)
Thanks diceman
|