PureBytes Links
Trading Reference Links
|
Steve
Karnish ( <A
href="">http://www.cedarcreektrading.com/Charts/charts.htm )
likes to use Fib numbers and you will find T3Fibs on many of his charts. TASC
magazine had several good articles on them ( <A
href="">http://traders.com/ ). AFL code,
functions & DLL can be found on the AmiBroker and Yahoo
sites
( <A
href="">http://amibroker.com/library/list.php ,
<A
href="">http://finance.groups.yahoo.com/group/amibroker/files/Herman%20van%20den%20Bergen/ )
<SPAN
class=812435618-14042004>
<SPAN
class=812435618-14042004>herman.
<SPAN
class=812435618-14042004>
Copied
from the AB site:
<SPAN
class=812435618-14042004>
<SPAN
class=812435618-14042004>function T3(price,periods) <FONT
face=Arial color=#0000ff size=2>{s =
0.84;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
ti3;}Plot(C,"",4,64);Plot(T3(C,50),"T3",colorYellow,1);Plot(t3(C,20),"T3",colorBlue,1);
<FONT face=Tahoma
size=2>-----Original Message-----From: Dean Hodgins
[mailto:deanhodgins@xxxxxxxxx]Sent: Wednesday, April 14, 2004 1:38
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker] T3
QuestionThis inquiry may be rather obscure but has to
do with a T3 (Tillson Crossover) indicator I ran across on a moneytec
forum / board.The T3 indicators on A/B were shown as
T3(3),T3(5),T3(8),T3(13),T3(21),T3(34)- interestingly all Fib derived
numbers.The resulting graph was essentially a series of smoothed T3 "sine
waves" that one could use to help confirm entries / exits.Looked
good to me but I have come up empty in trying to find the code that
produces the above indicators despite having searched the A/B afllibrary
and other searches. The T3 functions I did find in the afl library looked
nothing like the 6 waves plotted on the A/B chart referenced in the
original post.Has anyone run across this indicator / code and is the
code available anywhere for use in A/B.thanks &
regardsDean HodginsSend BUG REPORTS to
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
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 the Yahoo! Terms of Service.
|