PureBytes Links
Trading Reference Links
|
Roy and taforme,
Thanks much,
- larryTAKEOUT@xxxxxxxxxx
---------------------------------------------------
--- In equismetastock@xxxxxxxxxxxxxxx, "Roy Larsen" <rlarsen@xxxx>
wrote:
> Hi Larry
>
> I have this formula for "slope of line". Substitute the appropriate
function for the "P" variables
> as per second example. Don't ask me how the plot is calibrated.
>
> Regards
>
> Roy
>
> {Slope of Line}
> Periods:=Input("Periods",5,50,10);
> Slope:=((Sum(Cum(1)*P,Periods))-
> (Sum(Cum(1),Periods)*Sum(P,Periods)/Periods))/
> ((Sum(Power(Cum(1),2),Periods))-
> (Power(Sum(Cum(1),Periods),2)/Periods));
> Slope;
>
> {Slope of Line}
> Periods:=Input("Periods",5,50,10);
> Slope:=((Sum(Cum(1)*ADX(14),Periods))-
> (Sum(Cum(1),Periods)*Sum(ADX(14),Periods)/Periods))/
> ((Sum(Power(Cum(1),2),Periods))-
> (Power(Sum(Cum(1),Periods),2)/Periods));
> Slope;
>
> ----- Original Message -----
> From: "lseldin" <larry@xxxx>
> To: <equismetastock@xxxxxxxxxxxxxxx>
> Sent: Friday, March 26, 2004 11:30 AM
> Subject: [EquisMetaStock Group] How can I measure slope of ADX?
>
>
> > I have been looking at a way to measure the slope of the ADX. I
have
> > seen a function of ADXR. The definition from the help screen, is
ADXR
> > calculates the Directional Movement Rating.
> >
> > Is the ADXR trying to measure the ADX slope? If not, can you give
> > syntax to measure the slope of the ADX?
> >
> > Thanks much,
> >
> > larryTAKEOUT@xxxx
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
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/
|