Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Chande Momentum Oscillator for Amibroker (AFL)
For a nice description of the indicator and interpretation visit
http://www.paritech.com/education/technical/indicators/momentum/chande.asp
Screenshots
Similar Indicators / Formulas
Indicator / Formula
function funcCMO(periods) {
local cmo_1;
local cmo_2;
local cmo;
cmo_1=Sum( IIf( C > Ref( C, -1 ) , ( C - Ref( C ,-1 ) ) ,0 ) , periods ) ;
cmo_2=Sum( IIf( C < Ref( C ,-1 ) , ( Ref( C ,-1 ) - C ) ,0 ) , periods );
cmo=100 * (( cmo_1 -cmo_2) /( cmo_1+cmo_2));
return cmo;
}
cmo = funcCMO(20);
Plot(cmo,"cmo",IIf(cmo>Ref(cmo,-1),5,4),2|styleThick);
Plot(MA(cmo,9),"Trigger",colorYellow);
Plot(50,"",15);
Plot(-50,"",15);
Title="cmo"+WriteVal(cmo)+" Trigger"+WriteVal(MA(cmo,9));0 comments
Leave Comment
Please login here to leave a comment.
Back