PureBytes Links
Trading Reference Links
|
In a message dated 9/21/99 8:32:19 AM Pacific Daylight Time, hridens@xxxxxxxx
writes:
> Does anyone have an ela for an exponentially based displaced moving
> average for TS 4.0? Thanks in advance if so.
> Sam
just use the regular XMA and do this C[Y] where Y is the displacement. The
below is an XMA displaced by 2 bars [2]. Of course, you could add the
displacement to the inputs too.
Input: Price(Close),Length(21);
Plot1(XAverage(Price[2],Length),"XAvg");
Bill Wynne
SmartTrades.com
|