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

AO и AC Билла Вильямса for Amibroker (AFL)
TimOn76
about 12 years ago
Amibroker (AFL)

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

AO и AC Билла Вильямса

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 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
/* AO */
Title="";
//GraphXSpace =3;

B=(H+L)/2;
var1=MA(B,34);
var2=MA(B,5);
AO=Var2-Var1;
ao_color=IIf(AO>Ref(AO,-1),colorGreen,colorRed);
sAO=Wilders(AO,5);
Plot(AO,"AO",ao_color,2+4+styleNoLabel );
//Plot(sAO,"signal AO",colorBlue,1+4);
Plot(AO,"",colorBlack,styleNoLabel );
Plot(0,"",colorBlack,styleNoLabel );

/* AC */
  
Title="";
//GraphXSpace = 3;

B=(H+L)/2;
var1=MA( B ,34);
var2=MA( B,5);
var3=var2-var1;
AC=var3-MA(var3,5);
ac_color=IIf(AC>Ref(AC,-1),colorGreen,colorRed);
sAC=Wilders(AC,5);
Plot(AC,"AC",ac_color,2+4+styleNoLabel );
Plot(AC,"AC_Line",colorBlack,styleNoLabel );
//Plot(sAC,"AC_Signal",colorBlue,1+4);
Plot(0,"",colorBlack,styleNoLabel );

3 comments

1. debashisshome

hi
admin, i found this one interesting.
can u pls tell how to properly read it on a chart?

2. shariful

nice effort

3. parfumeur

AO and AC by Bill Williams:

’Awesome Oscillator"
AO = http://ta.mql4.com/indicators/bills/awesome

‘Acceleration/Deceleration Technical Indicator’
AC = http://ta.mql4.com/indicators/bills/acceleration_deceleration

You can easily Google for more detailed information on these indicators.

Cheers & Enjoy…. <Parfumeur>

Leave Comment

Please login here to leave a comment.

Back