PureBytes Links
Trading Reference Links
|
DP, try this exploration filter code below, and change date variables to
suit your own date.
---8<--------------------------
{ http://www.metastocktools.com }
{ Date variables }
StDay:=01; { <- past Day, 1~31 }
StMnth:=01; { <- past Month, 1~12 }
StYear:=2007; { <- past Year }
{ Date signal }
start:=Year()>StYear
OR (Year()=StYear AND (Month()>StMnth
OR Month()=StMnth AND DayOfMonth()>=StDay));
signal:=start AND Alert(start=0,2);
{ Data comparison }
pastClose:=ValueWhen(1,signal,C);
C>pastClose
---8<--------------------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "deviprabain" <deviprabain@xxx>
wrote:
>
> Can any one help how to write a formula for exploring stocks that have
> closed(today) higher than the close of a particular date.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Great things are happening at Yahoo! Groups. See the new email design.
http://us.click.yahoo.com/lOt0.A/hOaOAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|