PureBytes Links
Trading Reference Links
|
--- drc13uk <drc1939@xxxxxxxxxxxx> wrote:
> I would like to have an exploration which compares
> the increase of a
> security's close with that of it's main index ( i.e.
> Dow Industrials )
> compared to 1 year ago and for the exploration to
> show only those
> securities from the list that are above the Index
> increase. Can
> anyone please help? Many thanks.
depends on what you mean by increase , if it's simple
% increase here's what ur lookin' for
colA :
q1:=250
k0:=security("$indu",c);
k1:=(k0-ref(k0,-q1))/k0;
k2:=(c-ref(c,-q1))/c;
k3:=if(k2>k1,(k2-k1),0);
k3;
filter :
cola<>0
you may want to add a volume criteria i the filter....
__________________________________
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs Online - Over 14,500 titles.
No Late Fees & Free Shipping.
Try Netflix for FREE!
http://us.click.yahoo.com/vhSowB/XP.FAA/3jkFAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|