PureBytes Links
Trading Reference Links
|
Hi Jose,
Thanks, that is fantastic. It is aout 80% what I am after. With what
you have done I can finish from here. I am after the trendline
crossing the range of the day, this change is easy enough to make.
Thanks again
Steve.
--- In equismetastock@xxxxxxxxxxxxxxx, "Jose" <josesilva22@xxxx>
wrote:
>
> Steve, try this:
>
> =================================
> Linear Regression Trendline count
> =================================
> ---8<----------------------------
>
> { "Linear Regression Trendline" indicator:
> http://users.bigpond.com/prominex/MetaStock/LinRegTrend.txt }
>
> { User input }
> choose:=Input("Crossings: [1]Count, [2]Percentage",1,2,1);
>
> { Trendline Reference }
> trend:=Fml("Linear Regression Trendline");
>
> { Stats }
> crossing:=Cross(C,trend) OR Cross(trend,C);
> barCount:=BarsSince(Cum(IsDefined(trend))=1);
> crossCount:=Cum(crossing);
> percentage:=crossCount/barCount*100;
>
> { Plot in own window }
> If(choose=1,crossCount,percentage)
>
> ---8<----------------------------
>
>
> jose '-)
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, Stephen Dawson
<dawsonsg@xxxx>
> wrote:
> >
> > Hello Jose,
> >
> > I have been having a play with your Linear Regression Trendline &
> > Bands v3.0 code from your website.
> >
> > I was wondering if it is possible to somehow calculate the number
> > of daily bars that the automatic trendline crosses (not the
bands).
> >
> > Regards
> > Steve
------------------------ Yahoo! Groups Sponsor --------------------~-->
$4.98 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|