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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Money flow for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _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); |