PureBytes Links
Trading Reference Links
|
how can I
> reference the steepness of a moving average or other indicators
> in a signal?
> -----Original Message-----
> From: Francesco Topino [mailto:ftopino@xxxxxxxxxx]
> Sent: Thursday, January 04, 2001 7:02 PM
> To: omega-list@xxxxxxxxxx
> Subject: plotting stops
Use the function LinearRegSlope. The following is a stochastic of the slope
of the ADX:
{ADX Slope Stochastic}
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");
Unfortunately, this indicator responds too abruptly to be really useful.
JFB
Shaven Heads Trading
NYC
|