Registered User Joined: 4/21/2006 Posts: 26
|
Please help!!?!?
I'm trying to create a simple scan that will allow me to find stocks hitting 4 month highs.
I used this formula and am not coming up with anything.
C > MAXC80
|

 Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
C can never be greater than MAXC80 because it is a part of it.
You can try either of these:
C=MAXC80
...or you can try this:
C>MAXC80.1
The first will find stocks that close today AT the highest close for the last 80 days. The second will find stocks closing ABOVE the highest close for the previous 80 days (from yesterday back).
- Craig Here to Help!
|
Registered User Joined: 4/21/2006 Posts: 26
|
Thank you!
|