PureBytes Links
Trading Reference Links
|
Thanks Stephane - I was more interested in finding the originating
article / theory that developed the indicator - always nice to get
the background behind the development of the formulas.
Dean H.
--- In amibroker@xxxxxxxxxxxxxxx, "Stephane Carrasset"
<s.carrasset@xxxx> wrote:
> zlag is the DEMA
>
>
>
>
>
> Period= Param("What Period",1,1,250,10);
>
> EMA1= EMA(Close,Period);
>
> EMA2= EMA(EMA1,Period);
>
> Difference= EMA1 - EMA2;
>
> ZeroLagEMA= EMA1 + Difference;
>
> Plot(ZeroLagEMA,"zlagEma",2,1);
>
> Plot(DEMA(C,Period),"DEma",colorBlue,1);
>
>
> >
> >
> > > I was curious to read the theory / mathematics behind the
ZeroLag EMA
> > > that comes "preloaded" with AB. It does seem to get the lag out
much
> > > more than traditional MACD indicators.
> > > The description points to the April 2000 issue of Stocks and
> > > Commodities magazine however when I tried to purchase the
article
> > > from the S&C website I found that no such article existed for
April
> > > 2000 and using the search feature to find the elusive article
was of
> > > no help.
> > > Can anyone point me to the specific article regrading this
indicator.
> > > I'm a bit more comfortable using an indicator or oscillator if
I can
> > > read and understand how it was developed.
> > >
> > > Thanks
> > >
> > > Dean Hodgins
> > >
> > >
> > >
> > >
> > > Send BUG REPORTS to bugs@xxxx
> > > Send SUGGESTIONS to suggest@xxxx
> > > -----------------------------------------
> > > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > > --------------------------------------------
> > > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> > >
> > > __________ NOD32 1.716 (20040413) Information __________
> > >
> > > This message was checked by NOD32 antivirus system.
> > > http://www.nod32.com
> > >
> > >
> >
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> > __________ NOD32 1.716 (20040413) Information __________
> >
> > This message was checked by NOD32 antivirus system.
> > http://www.nod32.com
> >
> >
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|