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

ZeroLag MACD- ARC for Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
oscillator, amibroker, ZeroLag

This indicator displays the convergence and divergence of the sum of a guppy style time series forecast. This indicators can be used as a zero-lag MACD alternative.

Screenshots

Similar Indicators / Formulas

ZeroLag W%R
Submitted by solwake almost 14 years ago
ZeroLag MACD
Submitted by solwake almost 14 years ago
350 Swing Indicator
Submitted by elmoro94 about 14 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("LaglessMACD-ARC");
a= TSF(C,3)+TSF(C,5)+TSF(C,8)+TSF(C,13)+TSF(C,17)+TSF (C,26);
b= TSF(C,8)+TSF(C,13)+TSF(C,26)+TSF(C,35)+TSF(C,50)+TSF(C,56);
mova= TSF(a,3);
movb=TSF(b,26);
diff= a + mova;
diff1= b + movb;
m= diff - diff1;
m1= TSF(m,5)*.5;
m2=IIf(Ref(m1,-1)< m1,Ref(m1,-1),IIf(Ref(m1,-1) > m1,m,0));
//Plot(m2,"LaglessMACD--ARC",ParamColor("Set Your MACD-Color",colorBlue),ParamStyle("Set Your MACD-Style",styleLine,maskAll));
HistColour = colorBlue;
HistColour = IIf( m2 > Ref(m2,-1), IIf(m2 >0,27,41),IIf(m2 >0,43,32)  ); 
Plot( m2,StrFormat(_SECTION_NAME()),HistColour, ParamStyle("Set Your MACD Style",styleLine|styleThick,maskAll)); 
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back