Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
MFI modified for Amibroker (AFL)
Good indicator for Vietnam’s market. Plots two MFI indicators with different periods.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | _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.
Back