PureBytes Links
Trading Reference Links
|
Hi Herman,
Thank you for your kindness. I looked on the message archive and
cudn't find anything on T3's or Tillson. Now that you have been kind
enough to give me the formula,do I just enter it into the indicator
formula wizard and it does the rest? As you can see I'm a real whiz
when it comes to computers......LOL. Thank you again.
Kindest regards,
Tim
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> Do a search of the archives, there have been lots of posts on this
function,
> this one was posted by Dimitris.
>
> best regards,
> herman
>
> function T3(price,periods,s)
> {
> 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=-s*s*s;
> c2=3*s*s+3*s*s*s;
> c3=-6*s*s-3*s-3*s*s*s;
> c4=1+3*s+s*s*s+3*s*s;
> Ti3=c1*e6+c2*e5+c3*e4+c4*e3;
> return Nz(Ti3);
> }
>
>
> -----Original Message-----
> From: raven4ns [mailto:raven4ns@x...]
> Sent: Monday, October 04, 2004 9:37 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] re:Tillson T3
>
>
>
> Hello,
> I read an article about Tim Tillson's T3 indicator and was
> wondering if anyone has the formula that will work with AB? I would
> very much appreciate any help you could give me. Thank you.
>
> Regards,
>
> Tim
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
>
>
> 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 the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|