PureBytes Links
Trading Reference Links
|
------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.
To reply: http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=5334
------------------------------------------------------------------------
Ron
Using Alert() is also preferable to using Cross() for the very same reason -
Cross() adds one to the N/A count as well. These are small things but they
can (and do) have an impact when back-testing historical data.
Roy
> Thanks Roy.
>
> Yet another lesson learned.
>
> Ron
>
> Roy Larsen wrote:
>
> > Keith
> >
> > What you want can be done in a number of ways but here's the way I
> > convert a
> > multiple bar true signal into a single bar true, i.e. only the leading
> > edge
> > of a signal is used as the active signal.
> >
> > A:=L=LLV(L,5);
> > A AND Alert(A=0,2);
> >
> > By using Alert() in this way, instead of the alternative with Ref()
below,
> > we do not add an "N/A" bar to the output signal. The code below uses
Ref()
> > and consequently has one more N/A period if displayed as an indicator
> > at the
> > left side of the chart. This can become a major issue when timing is
> > important with more complex formulas.
> >
> > A:=L=LLV(L,5);
> > A AND Ref(A,-1)=0;
> >
> > Roy
> >
> > ----- Original Message -----
> > From: "a" <keithld@xxxxxxxxxxx>
> > To: "equismetastock" <equismetastock@xxxxxxxxxxxxxxx>
> > Sent: Tuesday, October 29, 2002 4:03 PM
> > Subject: [EquisMetaStock Group] duplication of symbols in an Expert
> >
> >
> > I was trying to make an Expert for the Lowest Low last 5 bars
> > resulting in LLV,5 which sort of works but too good!.
> > for example in a downtrend, I end up with many bars indicated that are
> > correctly ,the lowest low last 5 bars, which makes the whole thing
> > useless.
> >
> > is there a way in Metastock coding I can say something like
> >
> > LLV,5 (but if yesterday was also a LLV,5-----disregard it
> > and only
> > show today as the LLV,5
> >
> > thanks Keith
> >
> >
> >
> >
> > Yahoo! Groups Sponsor
> > ADVERTISEMENT
> >
<http://rd.yahoo.com/M=219695.2310151.3725769.1980433/D=egroupweb/S=17053756
17:HM/A=1226184/R=0/*http://ad.doubleclick.net/jump/N879.ameritrade.yahoo/B1
054521.11;sz=300x250;adc=ZHS;ord=1035922907?>
> >
> >
> >
> > To unsubscribe from this group, send an email to:
> > equismetastock-unsubscribe@xxxxxxxxxxxxxxx
> >
> >
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
> > <http://docs.yahoo.com/info/terms/>.
>
>
>
>
> 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/
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Looking for a more powerful website? Try GeoCities for $8.95 per month.
Register your domain name (http://your-name.com). More storage! No ads!
http://geocities.yahoo.com/ps/info
http://us.click.yahoo.com/auyVXB/KJoEAA/jd3IAA/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/
|