Expert Advisors • Indicators • Scripts • Libraries

MQL.RobotFX.org is the biggest collection of MetaTrader expert advisors (MT5 & MT4), indicators, scripts and libraries that can be used to improve trading results, minimize risks or simply automate trading tasks

MetaTrader 5 Indicator | Murrey_Math_Lv_Arr_r

Indicator Murrey_Math_Lv_Arr limiting the computer resources used in calculating and displaying the indicator on the chart. The new input variable, CountBars, has been added into the block of the indicator's inputs to optimize the calculations:

//+----------------------------------------------+  //|  INDICATOR INPUT PARAMETERS                  |  //+----------------------------------------------+  input int CalculationPeriod=64;              //P calculation period  input int StepBack=0;  input bool ViewFlag=false;  input int    FontSize=8;                     //font size  input type_font FontType=Font7;              //font type  input string  LableSirname="Murrey_Math_Lv"; //First part of the graphical objects names  input PLOT_DRAW_TYPE_ DrawType=DRAW_ARROW_;  //Option of displaying Murrey levels  input uint Arrow=160;                        //Symbol for Murrey levels  input uint ArrowSize=1;                      //Symbol size for Murrey levels  input uint CountBars=500;                    //number of bars to calculate the indicator  input uint ForwardBars=3;                    //number of bars to the right of the chart (maximum CalculationPeriod)  

To replace the values of characters, use table Winglings Characters.

The indicator uses the class of library GetFontName.mqh (should be copied to the terminal_data_folder\MQL5\Include).

The indicator can be displayed both as symbols, with default settings:

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 1. Indicator Murrey_Math_Lv_Arr_r with the selected option of drawing it with symbols

And as traditional lines at the relevant value of input parameter DrawType:

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 2. Indicator Murrey_Math_Lv_Arr_r with the selected option of drawing it with lines

23451