PureBytes Links
Trading Reference Links
|
Hi,
I am repeating my question reg. forecasting Tema Macd crossover point
with respect to price. Pls help.
Fazal
--- In amibroker@xxxxxxxxxxxxxxx, "fz_iqbal" <stockslover@xxxx> wrote:
>
>
> Hi Thomas,
>
> Thanks for your reply.
>
> I am trying to write a logic to arriving at the point at which a
scrip
> becomes a tema buy/sell so would like to know how TEMA can be
> calculated manually. Can u please explain how it can be done
manually
> to code or code it for me as it want to identify the entry point for
> buy or sell, the point obviously i mean is the price. Thanks in
> advance.
>
> Fazal
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Thomas Zmuck" <tzg@xxxx> wrote:
> > Hi fazal,
> >
> > Check out the amibroker help:
> >
> > //TEMA can be implemented via EMA:
> >
> > Len=10;
> > MyTEMA = 3 * EMA(Close,len) - 3 * EMA(EMA(Close,len),Len) +
> > EMA(EMA(EMA(Close,len),len),len);
> >
> > Plot(MyTEMA,"MyTEMA",colorBlue);
> >
> > // for comparison only
> > Plot( TEMA( Close, Len ), "Built-in TEMA", colorRed );
> >
> >
> > Regards
> >
> >
> >
> > Thomas Zmuck
> > www.tradingbasis.com
> >
> >
> >
> >
> >
> > -----Original Message-----
> > From: fz_iqbal [mailto:stockslover@x...]
> > Sent: Monday, March 14, 2005 7:50 AM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] TEMA
> >
> >
> >
> >
> > HI friends,
> >
> > I have been experimenting TEMA buying or sellign point with
> Metastock
> > for sometime but have not been able to identify it. I see
amibroker
> as
> > a more versatile software so may be it will be able to identify
it.
> > can any body explain the following
> >
> > whats TEMA ? is it EMA OF EMA OF EMA ?
> >
> > becuase if I calculate manually ema of ema of ema(c,12) i dont get
> the
> > value of TEMA(c,12) as per amibroker.
> >
> > can anybody explain ?
> >
> > Fazal
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > Please note that this group is for discussion between users only.
> >
> > To get support from AmiBroker please send an e-mail directly to
> > SUPPORT {at} amibroker.com
> >
> > For other support material please check also:
> > http://www.amibroker.com/support.html
> >
> >
> > Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|