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

Traders Dynamic Index (TDI) for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, oscillator

Traders Dynamic Index (TDI) is one of then most simple yet effective MetaTrader indicator — a comprehensive but helpful indicator that uses RSI (Relative Strength Index), its moving averages, and volatility bands (based on Bollinger Bands) to offer traders a full picture of the current Forex market situation. This indicator can use sound and visual alerts. It is available for MT4, MT5, and cTrader.

Now this is ported for Amibroker

Use the red and green crossover to enter the postions

Yellow line can be considered as the general direction of the market

Screenshots

Indicator / Formula

Copy & Paste Friendly

Apply the TDI indicator to the price chart

PlotGrid(32, colorWhite, styleDashed);
PlotGrid(68, colorWhite, styleDashed);
PlotGrid(50, colorWhite, styleDashed);
m = StochK(13,3);
a = DEMA(m,2);
b = MA(a,7);
bh = DEMA(a,34)+2*(StDev(a,34));
bl = DEMA(a,34)-2*(StDev(a,34));
bm = (bh+bl)/2;

Plot(a, "", colorGreen, styleThick,StyleNoLabel);
Plot(b,"TDI", colorRed,styleThick, StyleNoLabel);

Plot(bm,"", colorYellow, styleThick, StyleNoLabel);

1 comments

1. khushal09
Can you convert AMIBROKER AFL to CTRADER

Leave Comment

Please login here to leave a comment.

Back