PureBytes Links
Trading Reference Links
|
Steve,
This may be close to what you want but it will not plot on the forward day.
This will plot just the point where tomorrow's MA would be. The equation is
based on the MSWin Manual page 459 for Expo moving average. =>>It would be
good to have verification if this formula is correct since I haven't checked
it.
TC:=Input("Tomorrow's close",0.001,1000,1);
MAP:=Input("Moving Average Period",2,144,55);
MA1:=Mov(C,MAP,E);
EPX:=2/(MAP+1);
MA2:=(TC*EPX)+(MA1*(1-EPX));
ValueWhen(1,Cum(1)=LastValue(Cum(1)),MA2)
-----Original Message-----
From: Steve Karnish <kernish@xxxxxxxxxxxx>
To: metastock@xxxxxxxxxxxxx <metastock@xxxxxxxxxxxxx>
Date: Monday, March 01, 1999 5:24 PM
Subject: Christmas wish list
>List,
>
>I want an indicator that will project an exponential moving average into
>the next period (draw tomorrow's line). It would be really spiffy if I
>could plug in tomorrow estimated/projected close and be able to adjust the
>indicator based on various projected closes. Is this too much to ask of
>MS6.51? I'm trying to develop the trading rules for a new trend following
>mechanical approach. I will share with the group when it's done.
>
>
>Steve Karnish
>CCT
>
|