PureBytes Links
Trading Reference Links
|
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@xxxxxxxxxxxx]
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/
|