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

DOUBLE ADX FLEXIBLE. for Amibroker (AFL)

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

This is ADX with 25line on.
Also you can have two lines for ADX (for example 8 &13)
and two lines for DMI,
so you can follow the signals first of all and compare
them to exact conclusions…

The parameters of the indicators (ADX , ADX2 , DMI) are
flexible.
If you do not need two ADX or TWO DMI you can just put
the same price to DI, DI2 and ADX, ADX2…

I recommend DMI (8 & 13) and ADX (8 &14)).

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago

Indicator / Formula

Copy & Paste Friendly
ADX_Pds = Param("ADX Range", 13, 5, 100,1);
ADX2_Pds = Param("ADX2 Range", 8, 5, 100,1);
DI_Pds = Param("+DI/-DI Range", 13, 5, 100,1);
DI2_Pds = Param("+DI2/-DI2 Range", 8, 5, 100,1);

the_ADX = ADX(ADX_pds);
the_ADX2 = ADX(ADX2_pds);
the_PDI = PDI(DI_Pds);
the_MDI = MDI(DI_Pds);
the_PDI2 = PDI(DI2_Pds);
the_MDI2 = MDI(DI2_Pds);

Plot(the_ADX, "ADX", colorBlue, styleThick);
Plot(the_ADX2, "ADX2", colorBlue, styleDashed);
Plot(the_PDI, "+DX", colorGreen);
Plot(the_MDI, "-DX", colorRed); 
Plot(the_PDI2, "+DX", colorGreen,styleDashed);
Plot(the_MDI2, "-DX", colorRed,styleDashed); 
Plot(25,"",colorWhite,styleDashed);

1 comments

1. rumibepari
ADX_Pds = Param("ADX Range", 13, 5, 100,1);
ADX2_Pds = Param("ADX2 Range", 8, 5, 100,1);
DI_Pds = Param("+DI/-DI Range", 13, 5, 100,1);
DI2_Pds = Param("+DI2/-DI2 Range", 8, 5, 100,1);

the_ADX = ADX(ADX_pds);
the_ADX2 = ADX(ADX2_pds);
the_PDI = PDI(DI_Pds);
the_MDI = MDI(DI_Pds);
the_PDI2 = PDI(DI2_Pds);
the_MDI2 = MDI(DI2_Pds);

Plot(the_ADX, "ADX", colorBlue, styleThick);
Plot(the_ADX2, "ADX2", colorBlue, styleDashed);
Plot(the_PDI, "+DX", colorGreen);
Plot(the_MDI, "-DX", colorRed); 
Plot(the_PDI2, "+DX", colorGreen,styleDashed);
Plot(the_MDI2, "-DX", colorRed,styleDashed); 
Plot(25,"",colorWhite,styleDashed);

Leave Comment

Please login here to leave a comment.

Back