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

+Dx with arrow by StockBond for Amibroker (AFL)

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

Zero lag +DX indicator.

Screenshots

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
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("+DX");
r = Param("Periods", 14, 2, 200, 1 );
b= PDI(r);

EMA1= EMA(b,r);
EMA2= EMA(EMA1,1);
Difference= EMA1 - EMA2;
ZeroLagEMA= EMA1 + Difference;
PR= abs(ZeroLagEMA);

Plot(pr, " ", IIf(pr > Ref(pr,-1),colorBrightGreen,colorRed),styleDots);
PlotShapes(IIf(pr> Ref(pr,-1),shapeUpArrow,shapeNone),colorBrightGreen); 
PlotShapes(IIf(pr < Ref(pr,-1),shapeDownArrow,shapeNone),colorRed); 


Plot(40,"",colorRed, styleLine);
Plot(20,"",colorWhite, styleLine);


Title = EncodeColor(colorYellow)+  Title = Name()+ "======="+ EncodeColor(colorPink) 
+"+DX:=====: " + WriteVal(pr,format=1.2)+EncodeColor(colorWhite)+" == days :"+ WriteVal(r, format=1.2);


_SECTION_END();

6 comments

1. Kabir

Very nice AFl

Hope for more intersting AFL

2. canhtran

nice AFL

3. sylwesp

hi… how to get this indicator? please

4. administrator

Use ‘Copy & Paste Friendly’ link

5. sylwesp

sorry but i never done this before…

6. sylwesp

do you have this indicator? can you send it?

Leave Comment

Please login here to leave a comment.

Back