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 ....
MFI line for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
amibroker
Compare MFI to MA14
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("MFI");
periods = Param( "Periods", 14, 2, 200, 1 );
FLAG=IIf(MFI()>MA(MFI(),periods),1,0);
color=IIf(FLAG==1,colorBrightGreen,colorRed);
Plot(MFI(),"", color );
Plot(20,"",ColorRGB(195,158,255)); Plot(70,"",ColorRGB(195,158,255));
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back