PureBytes Links
Trading Reference Links
|
the price channel indicator looks like:
----------------------------------------------------------
Price Channel 100.00 {Oversold}
========== ======= 100
\\ //
\\ //
\\ //
== ======= 0
\\ //
\\ ==
\\ //
===== -100
-----------------------------------------------------------
also see
http://home.earthlink.net/~danny.feng/data/T3_PriceChannel.jpg
really appreciated if anyone can post the original code.
thx.
--- In amibroker@xxxxxxxxxxxxxxx, Terry <MagicTH@xxxx> wrote:
> I donšt know if this is the Tillson T3, but it is a T3 indicator.
(Also
> included as attachment).
>
> /* T3 trading system */
> a = 0.618;
> n = 24;
>
> alpha = 2/(n + 1);
> e1 = EMA(Close, n);
> e2 = EMA (e1, n);
> e3 = EMA (e2, n);
> e4 = EMA (e3, n);
> e5 = EMA (e4, n);
> e6 = EMA (e5, n);
>
> T3 = -a^3 * e6 + (3 * a^2 +3 * a^3) * e5 + (-6 * a^2 - 3 *
> a - 3 * a^3) * e4 + (1 + 3 * a + a^3 + 3 * a^2) * e3;
>
> Graph0 = Close;
> Graph1 = T3;
> Graph2 = EMA(Close,24);
> Graph2Color=28;
> Graph2Style=1;
>
> Sell = Cross ( Close, T3 );
> Buy = Cross (T3, Close );
> Short = Cross ( Close, T3);
> Cover = Cross (T3, Close );
>
> Terry
> --
>
> > people where i can find AFL files for Tillson T3 and Price Channel
> > please help me
> > if anybody has already please e-mail to me md_nemo@xxxx
> >
> >
>
>
>
> [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/
|