PureBytes Links
Trading Reference Links
|
Hi Preston,
Thanks for explaining Tema moving average and for giving the following derivation.
{Arun DTMA}
{Plots either a DEMA or TEMA}
Plot:= Input("Display [1] Dema[2] Tema",1,2,2) ;
Period:= Input("What Period",1,250, 10);
EMA1:= Mov(C,Period, E);
EMA2:= Mov(EMA1,Period, E);
EMA3:= Mov(EMA2,Period, E);
Difference:= EMA1 - EMA2;
DMA:= EMA1 + Difference;
TMA:=(3*(EMA1- EMA2))+EMA3;
If(plot=2,TMA, DMA);{end}
I'll substitute and see whether I get the formula. Thanks
Kind Regards.
Arun
---------------------------------
8:00? 8:25? 8:40? Find a flick in no time
with theYahoo! Search movie showtime shortcut.
[Non-text portions of this message have been removed]
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|