Skip to main content

MFI modified for Amibroker (AFL)

acumen about 16 years ago Amibroker (AFL)

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

Good indicator for Vietnam’s market. Plots two MFI indicators with different periods.

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("MFI modified");
periods = Param( "Periods", 13, 2, 200, 1 );
Plot( MFI(periods), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("MFI short");
periods = Param( "Periods", 5, 2, 200, 1 );
Plot( MFI(periods), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style") );

UL= Param("Upper Limit",70,0,100,1);
LL= Param("Lower Limit",30,0,100,1);
PlotGrid(UL,colorYellow);    
PlotGrid(LL,colorYellow);

_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.