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

Chande Momentum Oscillator for Amibroker (AFL)

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

For a nice description of the indicator and interpretation visit

http://www.paritech.com/education/technical/indicators/momentum/chande.asp

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
%R ++
Submitted by reb almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
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