PureBytes Links
Trading Reference Links
|
Gerald-
You can use LinearRegAngle and LinearRegSlope.
An ADX Slope Angle indicator might be:
----------------------------------------
Input: Length(9),ALen(14);
Plot1(LinearRegAngle(ADX(ALen),Length),"Plot1");
Plot2(0,"");
---------------------------------------
An ADX Slope Stochastic might be:
-----------------------------------------------
Input: SLLength(5),STLength(14);
Var: ADXSlope(0);
ADXSlope=LinearRegSlope(ADX(14),SLLength);
Plot1((ADXSlope-
Lowest(ADXSlope,STLength))/(Highest(ADXSlope,STLength)
-Lowest(ADXSlope,STLength))*100,"SlopeStoch");
-------------------------------------------------
I have done some work with both of these without discovering any
holy grail.
On 30 Jul 2001, at 10:51, Gerald Marisch wrote:
> Is there a way of defining the angle of ascent or descent of a moving
> average considering the last "x" number of periods?
>
JFB
NYC
|