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

Colourful Chaikin Money Flow for Amibroker (AFL)
nizamshah
almost 11 years ago
Amibroker (AFL)

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

This is the Afl for the Chaikin Money Flow indicator, with the addition of colouring to indicate bearish and bullish money flow.

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 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
_SECTION_BEGIN("Chaikin Money Flow");

function CMF(r1)
{
Graph0=Sum(IIf( H>L && V>0,((( C-L )-( H-C )) / ( H-L ))*V,0),r1) / Sum(V,r1);

dynamic_color = IIf( Graph0> 0, colorGreen, colorRed ); 

Plot(Graph0, "Chaikin Money Flow ("+r1+")", dynamic_color, styleHistogram | styleThick); 

}

r1=Param("Periods", 21);
CMF(r1);

0 comments

Leave Comment

Please login here to leave a comment.

Back