PureBytes Links
Trading Reference Links
|
Steve,
Here is the AFL for your indicator.
I create first the general Ti3 function and then apply to per=3, 5
and 8 [or whatever...]
Could you post some lines for the interpretation ?
[What is the blue line near the bottom of the indicator]
According to your use, we could probably anticipate some decisions by
1 bar.
//the Ti3 function
function T3(price,periods,a)
{
e1=EMA(price,periods);
e2=EMA(e1,Periods);
e3=EMA(e2,Periods);
e4=EMA(e3,Periods);
e5=EMA(e4,Periods);
e6=EMA(e5,Periods);
c1=-a^3;
c2=3*a^2+3*a^3;
c3=-6*a^2-3*a-3*a^3;
c4=1+3*a+a^3+3*a^2;
Ti3=c1*e6+c2*e5+c3*e4+c4*e3;
return ti3;
}
//Application
price=C;a=0.618;
t3_3=t3(price,3,a);
t3_5=t3(price,5,a);
t3_8=t3(price,8,a);
x=abs(t3_3-t3_5)+abs(t3_5-t3_8);
Plot(x,"x",1,1);
Dimitris Tsokakis
>
> ----- Original Message -----
> From: CedarCreekTrading
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Saturday, April 10, 2004 6:53 PM
> Subject: Re: [amibroker] Better news [was Re: Good news for
Ti3() users]- Dimitris....Could it be written
>
>
> DT,
>
> Sorry about the "infidel" code (and chart). I'm sure you can
translate. I've looked at a few thousand charts and I can assure you
that I have never seen an idicator that preceeds directional
movement ... quite like the Pocket Rocket. It does not signal a
direction...just the convergence (superimpostion, confluence, "pick a
term") of the T3, T5, T8.
>
> It's a new tool in our technical toolbox...but, my, my a
powerful one!
>
> Take care,
>
> Steve
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|