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

Acceleration / Deceleration (AC) indicator for Amibroker (AFL)
Spioch
over 13 years ago
Amibroker (AFL)

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

Oscillator Acceleration / Deceleration (AC) Bill Williams is a technical analysis indicator used for measuring the strength of the market.
The indicator is calculated as the difference between the current value of index Awesome Oscillator and a 5-regular simple moving average of the index Awesome Oscillator:

AC = AO – SMA (AO, 5)

Screenshots

Similar Indicators / Formulas

3 Days Track
Submitted by janet0211 almost 14 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
%R ++
Submitted by reb almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
SetChartOptions( 0, chartShowArrows|chartShowDates );

_SECTION_BEGIN("Acceleration / Deceleration (AC) Bill Williams");
/*** The trend indicators ***/

P= ParamList("Price", "Close|(H+L)/2|(H+C+L)/3",1);

if (P=="Close")
   A = C;
   
else
if (P=="(H+C+L)/3")
   A = (H+C+L)/3;
else
  A = (H+L)/2;

AO=MA(A,5)-MA(A,34);
AOcolor=IIf(AO>Ref(AO,-1),colorGreen,colorRed);

AC=AO-MA(AO,5);
ACcolor=IIf(AC>Ref(AC,-1),colorGreen,colorRed);

Plot(AC,"AC",ACcolor,styleHistogram|styleThick);

_SECTION_END();

2 comments

1. konidena

Very good indicator.
Thanks
Subrahmanyam

2. prasadmuni

Will check and get back soon.Seems quite different from the Awesome ind.
Thanks once again
Prasad

Leave Comment

Please login here to leave a comment.

Back