PureBytes Links
Trading Reference Links
|
I've also run the same exploration tonight, and found 39% of stocks in
the ASX that are now 10% above the Close of 2/Sept/2003.
There is a chance that your exploration settings don't have enough
periods loaded to cover this period, and therefore it may not go back
far enough in time to reference the 2/Sept/2003 Close.
Try loading 2500 records in the Explorer options.
jose '-)
--- In Metastockusers@xxxxxxxxxxxxxxx, Mohamed Kamar <mkamar2002@xxxx>
wrote:
> Jose
> Thanks for posting the formula. I pasted it on the
> filter section of the explorer for a new exploration
> and ran the exploration. But, unfortunately it did not
> work. May be I am doing some thing wrong.
>
> Kamar
>
> --- Jose <josesilva22@xxxx> wrote:
>
> > Try this:
> >
> > ---8<----------------
> >
> > StDay:= 02; { Past Day, 1~31 }
> > StMnth:=09; { " Month, 1~12 }
> > StYear:=2003; { " Year, eg 2004 }
> > threshold:=10; { Minimum % move }
> >
> >
> > start:=Year()>StYear
> > OR (Year()=StYear AND (Month()>StMnth
> > OR Month()=StMnth AND DayOfMonth()>=StDay));
> > RefDay:=start AND Alert(start=0,2);
> > RefDayClose:=LastValue(ValueWhen(1,RefDay,C));
> > PercentMove:=(C/RefDayClose-1)*100;
> >
> > PercentMove>threshold
> >
> > ---8<----------------
> >
> > This line of code:
> > RefDay:=start AND Alert(start=0,2);
> > ... is taken from one of many MetaStock tricks
> > developed by Roy.
> > In the first issue of the MetaStock newsletter, Roy
> > explains the
> > benefits of using Alert() instead of Ref().
> >
> >
> > jose '-)
> >
> >
> >
> > --- In Metastockusers@xxxxxxxxxxxxxxx, Mohamed Kamar
> > <mkamar2002@xxxx>
> > wrote:
> > > Hi
> > >
> > > The formula I want is:
> > > To explore stock prices that have moved more
> > thant
> > > ten percent in 2 September 2003.
> > >
> > > Any help would be greately appreciated.
> > >
> > > Kamar
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|