PureBytes Links
Trading Reference Links
|
Sonny,
Here's the indicator. Just replace the CLOSE with whatever you like. As far
as displacing forward...find that answer and you'll have worked a miracle.
J.
{ZeroLagEMA}
{Peter Martin alakazam@xxxxxxxxxxx}
Period:= Input("What Period",1,250,3);
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: Zero Lag EMA
>Date: Fri, 19 May 2000 10:16:32 EDT
>
>The list talked about the use of Zero Lag EMA a couple of weeks ago. The
>Zero Lag EMA is set so it applies to the closing price only. Does anyone
>know how I can adjust the formula so the Zero Lag EMA can be applied to the
>high and low or to get it to displace forward? Thanks, -Sonny-
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
|