Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Market Facilitation Index for Amibroker (AFL)
Market Facilitation Index Technical Indicator (BW MFI) is the indicator which shows the change of price for one tick. Absolute values of the indicator do not mean anything as they are, only indicator changes have sense. Bill Williams emphasizes the interchanging of MFI and volume:
Similar Indicators / Formulas
Indicator / Formula
function MarketFacilitationIndex() { return ( High - Low )/Volume; } mfac = MarketFacilitationIndex(); rm = ROC( mfac, 1 ); rv = ROC( Volume, 1 ); Color = IIf( rm > 0 AND rv > 0, colorGreen, IIf( rm < 0 AND rv < 0, colorBlue, IIf( rm > 0 AND rv < 0, colorGrey40, IIf( rm < 0 AND rv > 0, colorRed, colorLightGrey ) ) ) ); Plot( mfac, _DEFAULT_NAME(), Color, ParamStyle("Style", styleHistogram | styleThick, maskHistogram ) );
0 comments
Leave Comment
Please login here to leave a comment.
Back