Custom Moving Average Levels – indicator MetaTrader 5

Custom Moving Average Levels
A Moving Average indicator, for which the values of two levels can be specified from the MQL5 code: An example of this indicator (located in “terminal data directory”\MQL5\Indicators\MyInd\): … int            handle_iMA_Custom;            // variable for storing the handle of the iMA indicator //+——————————————————————+ //| Expert initialization function                                   | //+——————————————————————+ int OnInit()   { … //— create handle of the … Read more

Custom Daily Candlesticks – indicator MetaTrader 5

Custom Daily Candlesticks - indicator for MetaTrader 5
The indicator allows customizing the day beginning hour, the vertical shift of candlesticks, as well as colors of bullish, bearish and doji candlesticks. It has five input parameters: Hour of begin day – day beginning hour; Candles vertical shift – vertical shift for the candlesticks; Color of bullish candle – select color for bullish candlesticks; … Read more

Custom Moving Average Input Color – indicator MetaTrader 5

Custom Moving Average Input Color
New input parameter “line color” has been added. You probably noticed that if an Expert Advisor uses the Moving Average indicator data, then this indicator is displayed ONLY in red in the visual tester mode. If such an EA uses data of three Moving Averages, all three indicators are shown in red. So it is … Read more

Custom Moving Average Inputs – indicator MetaTrader 5

Custom Moving Average Inputs
Two settings have been added to input parameters: line color (Color) and line width (Width). You probably noticed that if an Expert Advisor uses the Moving Average indicator data, then this indicator is displayed ONLY in red in the visual tester mode. If such an EA uses data of three Moving Averages, all three indicators … Read more

Custom Bulls Power Inputs – indicator MetaTrader 5

Custom Bulls Power Inputs
Two settings have been added to input parameters: line color (Color) and line width (Width). Why are the line color (Color) and line width (Width) are provided as input parameters, whereas the line color and width in the standard indicator can be changed manually? If you test a strategy in the tester or if the … Read more

Custom Bears Power Inputs – indicator MetaTrader 5

Custom Bears Power Inputs
Two settings have been added to input parameters: line color (Color) and line width (Width). Why are the line color (Color) and line width (Width) are provided as input parameters, whereas the line color and width in the standard indicator can be changed manually? If you test a strategy in the tester or the indicator … Read more

WPR Custom – indicator MetaTrader 5

WPR Custom
The following characteristics were made input parameters: color of the indicator main line width of the indicator main line values of the two indicator levels Why was this done When testing EAs using iWPR (Williams’ Percent Range, %R) standard indicator, the picture is always far from promising: the indicator color cannot be changed (#1) and, … Read more

RSI Custom Smoothing – indicator MetaTrader 5

RSI Custom Smoothing
The following settings are now available as input parameters: color of the indicator main line width of the indicator main line values of the two indicator levels What is the purpose of the above updates: now, indicator levels and colors can be managed from within the Expert Advisor. This feature is especially useful during visual … Read more