[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Re: TEMA



PureBytes Links

Trading Reference Links


Hello,

I don't have the skills to help you, but DT coded something about 
the next MACD crossover, maybe that helps.

http://www.elitetrader.com/vb/showthread.php?
s=&threadid=45378&perpage=6&pagenumber=1

Sjaak

--- In amibroker@xxxxxxxxxxxxxxx, "fz_iqbal" <stockslover@xxxx> 
wrote:
> 
> Dear Thomas
> 
> Thanks for your reply. I am looking for the statistical
> formula for TEMA macd crossover (just like forecasting
> at what price macd crossver will take place)
> 
> To make it more clear:
> I wan t to know at what price
> 
> TEMA(c,12)-Tema(c,26)=Ema((tema(c,12)-Tema(c,26),9)
> 
> I hope you can help me in this matter.
> 
> Thanks
> 
> Fazal,
> 
> 
> -- In amibroker@xxxxxxxxxxxxxxx, "Thomas Zmuck" <tzg@xxxx> wrote:
> > Hello Fazal,
> > 
> > i believe you get better help when you define your question more 
> precise.
> > What exactly do you mean with TEMA crossover or TEMA Macd ?
> > 
> > As you wrote that you can code it by yourself i am not sure what 
you 
> mean.
> > 
> > As you know, a simple crossover can be coded by: cross(c,tema
(c,3); 
> for
> > example.
> > 
> > Regards
> > 
> >  
> > 
> > Thomas Zmuck
> > www.tradingbasis.com
> > 
> > 
> >  
> > 
> > -----Original Message-----
> > From: fz_iqbal [mailto:stockslover@x...] 
> > Sent: Saturday, March 26, 2005 2:19 PM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Re: TEMA
> > 
> > 
> > 
> > Hi,
> > 
> > The problem I am asking is not a ami problem, i know as i can 
> compute 
> > TEMA but it is more of a statistical question. I am not asking 
for 
> > coding help as I can code it myself but I need help in 
understanding 
> > how to calculate TEMA crossover manually.
> > 
> > I am sorry to have written it that way as I know it is up to the 
> guys 
> > here to answer or support a question, but the comments were more 
of 
> a 
> > frustration. sorry for  my comments.
> > 
> > I sincerely hope somebody comes to my help.
> > 
> > Fazal
> > --- In amibroker@xxxxxxxxxxxxxxx, "klal25" <klal25@xxxx> wrote:
> > > 
> > > Fazal,
> > > 
> > > If Amibroker has a problem, perhaps contacting the official 
> support
> > > channel might be a better idea.  If what you're after is a 
> solution 
> > to
> > > a coding problem, then you are simply dependent upon the 
> willingness
> > > of anybody here to help.  I don't think the group is obliged 
to 
> > solve
> > > every coding problem!
> > > 
> > > Lal
> > > 
> > > --- In amibroker@xxxxxxxxxxxxxxx, "fz_iqbal" 
<stockslover@xxxx> 
> > wrote:
> > > > 
> > > > Hi,
> > > > 
> > > > I asked question in this forum expecting support for ami, 
but I 
> am 
> > > > really dissapointed with the lack of response leave aside 
> solution 
> > to 
> > > > my problem.
> > > > 
> > > > Thanks guys
> > > > 
> > > > Fazal
> > > > 
> > > > --- In amibroker@xxxxxxxxxxxxxxx, "fz_iqbal" 
<stockslover@xxxx> 
> > wrote:
> > > > > 
> > > > > Hi Thomas,
> > > > > 
> > > > > Can u please please advise how to manually forecast tema 
macd 
> > > > > crossover so that I can code the crossover point. 
> > > > > 
> > > > > Fazal
> > > > > 
> > > > > --- In amibroker@xxxxxxxxxxxxxxx, "fz_iqbal" 
<stockslover@xxxx
> > 
> > > > wrote:
> > > > > > 
> > > > > > 
> > > > > > 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@xx
> ..
> > > 
> > > > > 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
> > 
> > 
> > 
> > 
> > 
> > 
> > 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/