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

AC (Acceleration Oscillator) Indicator for Amibroker (AFL)

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

AC (Acceleration Oscillator) Indicator code.
Please note this is another indicator to support Alligator Trend Following system.

Similar Indicators / Formulas

AO (Awesome Oscillator) Indicator
Submitted by rajeevj over 12 years ago
AO и AC Билла Вильямса
Submitted by TimOn76 over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek almost 14 years ago
KPShortTermTrend Bias
Submitted by knifeman almost 14 years ago
Score Card
Submitted by Nahid almost 14 years ago
Volatility Ratio
Submitted by walid almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Acceleration Oscillator");

MAAvg34 = MA(Avg, 34);
MAAvg5 = MA(Avg, 5);
MADiff = MAAvg5 - MAAvg34;
AC = MA(MADiff - MA(MADiff, 5), 5);

ACUpBar = AC > Ref(AC, -1);
ACDownBar = AC < Ref(AC, -1);

Plot(AC,"AC",IIf(ACUpBar,colorGreen,colorRed),styleHistogram|styleThick);

Plot(0,"",15);

_SECTION_END();

1 comments

1. shaggyboo

add some related pics so it will be easy to understand the work by a quick look…

Leave Comment

Please login here to leave a comment.

Back