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

RE: Displaced moving average and multiple time frames



PureBytes Links

Trading Reference Links

Okay, try this:

for plotting a 5 period MA, displaced 3 periods (this would roughly be a
weekly MA when plotted on daily bars)

Value1 = @Average ((HIGH+LOW) / 2), 5);

Plot1      (Value1[3], "MA 5/3");
Plot1[-1](Value1[3-1], "MA 5/3");
Plot1[-2](Value1[3-2], "MA 5/3");
Plot1[-3](Value1[3-3], "MA 5/3");

Good luck,

Doug

-----
Doug Forman, MCSE (doug@xxxxxxxxxxx)
Incline Systems, Inc. - Vancouver, WA

> -----Original Message-----
> From: Edwin [mailto:edwintay@xxxxxxxxx]
> Sent: Sunday, August 15, 1999 8:29 AM
> To: omega-list@xxxxxxxxxx; code-list@xxxxxxxxxxxxx
> Subject: Displaced moving average and multiple time frames
>
>
> Using TS2000i, how can I
>
> 1) plot a displaced moving average (with the displaced portion visible)
>
> 2) plot moving averages based on data on a higher time frame such as
> weekly and plot it on a daily bar chart.
>
> 3) how can I plot multiple of higher time frames moving averages on
> the    same chart
>
> I hope someon who has the knowledge can help out on this one. An example
> of how to do this would be great. Thanks.
>