PureBytes Links
Trading Reference Links
|
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 --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/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/
|