[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Applying a moving average to an indicator



PureBytes Links

Trading Reference Links

Hi Robert,
Let's say you have the indicator - average(close,9) and you want to
calculate a 9 period simple moving average of this indicator.  One of the
ways you could do this would be:
value1=average(close,9); {the indicator}
value2=average(value1,9); {a moving average of the indicator}
plot1(value2,"MovAvgOfMyIndicator");
This is a very basic but the underlying technique can be applied to most
complex ones (I think).
Take care
Romi
----- Original Message -----
From: "Robert R Rowe" <rrrowe@xxxxxxxxxxxxx>
To: "Omega Digest" <omega-list@xxxxxxxxxx>
Sent: Friday, August 30, 2002 12:35 PM
Subject: Applying a moving average to an indicator


> Can someone tell me how to apply a moving average to an indicator in Ts2k.
> Thanks.
> Robert
>
>
>
>
>