Registered User Joined: 10/7/2007 Posts: 13
|
Hi,
Is it possible to write an easyscan which select stocks with the following criteria?
* todays volume is the highest of the last 20 days
*todays percentage trading range is the highest of the last 20 days
*todays close is higher than yesterdays close
Thx
Vincent
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Try this:
V=MAXV20 AND
H/L>H1/L1 AND
H/L>H2/L2 AND
H/L>H3/L3 AND
H/L>H4/L4 AND
H/L>H5/L5 AND
H/L>H6/L6 AND
H/L>H7/L7 AND
H/L>H8/L8 AND
H/L>H9/L9 AND
H/L>H11/L11 AND
H/L>H12/L12 AND
H/L>H13/L13 AND
H/L>H14/L14 AND
H/L>H15/L15 AND
H/L>H16/L16 AND
H/L>H17/L17 AND
H/L>H18/L18 AND
H/L>H19/L19 AND
H/L>H20/L20 AND
C>C1
- Craig Here to Help!
|