PureBytes Links
Trading Reference Links
|
Found this:
The adaptive T3 DLL was the first posted on the AmiBroker-DLL list (post #6, 5/17/2002) and you can follow the thread there. The HBT3A.DLL can be downloaded from the Yahoo Amibroker User list file section: http://groups.yahoo.com/group/amibroker/files/Herman%20van%20den%20Bergen/
References:
Butkowski, Dale, 2001-08-05, AFL coding at http://www.amibroker.com/library/detail.php?id=82
Tillson, Tim (1998), "Smoothing techniques for more accurate signals", TASC, vol 16: January.
Burns, Steve (2001, "Tweeking the T3 Trading System", TASC, June 2001.
You can also experiment with the T3 in afl code:
Temp = C; // Varibale to be smoothed
s = 0.84;
e1=EMA(Temp,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;
T3=c1*e6+c2*e5+c3*e4+c4*e3;
I use an adjusted "hot" number of .618 (Tim uses .7).
Take care,
Steve
----- Original Message -----
From: raven4ns
To: amibroker@xxxxxxxxxxxxxxx
Sent: Monday, October 04, 2004 8:05 PM
Subject: [amibroker] Re: re:Tillson T3
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.
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
Select Your State:AlabamaAlaskaArkansasArizonaCaliforniaColoradoConnecticutDelawareFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMissippiMissouriMontanaNebraskaNevadaNew HampshireNew MexicoNew JerseyNew YorkNorth CarolinaNorth DakotaOklahomaOhioOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWashington D.C.West VirginiaWisconsinWyoming
PurchaseRefinance
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ 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/
|