Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

T3 TRADING. for Amibroker (AFL)
ngoctuth
about 13 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
trading system, amibroker

T3 trading.

Similar Indicators / Formulas

weighted moving average scan
Submitted by naninn about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Kase CD V2batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
EMA System Ribbon
Submitted by yo123 about 13 years ago
Three-Bar Inside Bar Pattern
Submitted by EliStern about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("T+3 trading system ");
/* T+3 trading system */
a = 0.7;
n = 2;

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;

Sell = Cross ( Close, T3 );
Buy = Cross (T3, Close );
Short = Cross ( Close, T3);
Cover = Cross (T3, Close );

Title =Name()+" hê thông luot song T+3 - Tu-indicator";

_SECTION_END();

1 comments

1. atula146

cam on!

Leave Comment

Please login here to leave a comment.

Back