PureBytes Links
Trading Reference Links
|
Zero Lag EMA
Here's my Metastock 6.2 coded version of the Zero Lag Moving Average, as
described in the April, 2000, issue of Technical Analysis of Stocks and
Commodities. I've also used it to construct a Zero Lag MACD and a Zero Lag
MACD trigger signal.
Period:= Input("What Period",1,250,10);
EMA1:= Mov(CLOSE,Period,E);
EMA2:= Mov(EMA1,Period,E);
Difference:= EMA1 - EMA2;
ZeroLagEMA:= EMA1 + Difference;
ZeroLagEMA
>From: Sonnysark@xxxxxxx
>Reply-To: metastock@xxxxxxxxxxxxx
>To: metastock@xxxxxxxxxxxxx
>Subject: Re: Zero Lag ema
>Date: Wed, 3 May 2000 01:04:24 EDT
>
>I was not able to find the Zero Lag ema at the web page....please help.
>-Sonny-
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
|