where "Min_Value" and "Max_Value" are corresponding values. For example, these values must be 0 and 100 respectively for custom indicator RSI.
The number of indicator arrays necessary for drawing an indicator must be defined as follows:
#property indicator_buffers N
where N can take on values from 1 to 8.
The color of lines in an indicator is set by the following definitions:
#property indicator_color1 Silver#property indicator_color2 Red
...
#property indicator_colorN <SomeColor>
where N is the number of indicator arrays defined by "#define indicator_buffer".
There are functions allowing to control the process of indicator calculation and visualization. Custom Indicator of Ishimoku Kinko Hyo is used here to illustrate it:
"SetIndexStyle" function controls drawing parameters of an indicator array. The drawing mode of DRAW_LINE assumes that lines between values defined in a corresponding indicator array are drawn.
The drawing mode of DRAW_HISTOGRAM having been applied to the main window indicator has its special features, as well. A histogram is drawn between corresponding values of two index arrays: an even one (here: SpanA_Buffer) and an odd one (here: SpanB_Buffer). At that, the color of the index array is used the value of which is higher.
"SetIndexDrawBegin" function specifies which element significant data of indicator array start at.
"SetIndexBuffer" function allows to declare any one-dimensional array of the "double" type as an index array. At that, the system will manage index arrays. It is this reason for which the of these arrays does not need to be specified.
The ArrayResize function cannot be applied to indicator arrays, either, as it is useless. It is useless, as well, to apply the ArrayInitialize function to indicator arrays, especially as 'init' function, when indicator arrays have not been allocated yet. Indicator arrays are initialized automatically during memory allocation and reallocation. EMPTY_VALUE, or the value specified by SetIndexEmptyValue function, are used as initializing values. "Empty" values are not displayed.
The "SetIndexLabel" function sets the name to be displayed in tool tips and in data window along with the corresponding value (the "ValueN" is set by default, where N is the number of the index array).
If NULL is transferred instead of a name, the corresponding value will be displayed neither in tool tips, nor in the data window. In the given case, clouds are hatched using a histogram and limited by a line. At that, the values of corresponding "line" and "histogram" arrays are the same, and it is possible to show only one of them.
The "IndicatorCounted" function allows to organize an economic calculation of an indicator. This function returns the amount of bars by the moment of the preceding launch of the indicator, i.e., the amount of bars having already been calculated (potentially, if there were no errors or early termination during the preceding launch) which do not need any recalculation. At reinitialization of the custom indicator or significant updating of history data, this amount will be automatically reset to 0.
Let us discuss one more example. The custom indicator named Accelerator/Decelerator Oscillator:
The "IndicatorBuffers" function specifies the amount of buffers to be used in indicator claculation. Generally, this function is called if more index arrays are used than it is necessary for drawing an indicator. At that, the system manages additional arrays.
The "SetIndexDigits" function manages the precision of information output. In this case, when the difference between two moving averages as well as the further difference between the result and the signal line is calculated, the standard precision of within 4 characters after point is obviously insufficient.
The "SetIndexDrawBegin" function specifies the element the significant data of indicator array begin at. In our example, the signal line is calculated as simple moving average of another simple moving average. This is why the first 38 values of the indicator are considered as empty ones and are not to be drawn.
The "IndicatorShortName" function sets a so-called short name of the indicator to be displayed in the upper left corner of the indicator window and in "DataWindow". If the short name has not been set up, the custom indicator name will be used as the former one. In the given example, there is no need to use the SetIndexLabel function, because only one value is output. So, the name of the indicator is enough for output of a single value.
The "SetIndexStyle" function manages drawing parameters of an indicator array. The drawing mode of DRAW_NONE means that the line does not need to be drawn. The matter is that histogramm of the indicator presented must be colored in 2 different colors. Data from ExtBuffer0 are allocated in two other arrays, ExtBuffer1 and ExtBuffer2. In order not to output doubling data in tool tips or in data window, the SetIndexLabel function having NULL parameter is used.
The drawing mode of DRAW_HISTOGRAM being applied to the indicator of a separate window allows to draw histogram between zero value and the value of a corresponding array (compare with drawing of a histogram in the main window described above).
Input parameters used for calculation by custom indicators and functions must be defined as "extern" and may be of any type.
If input parameters have not been set the corresponding custom indicator will be called in the simplest format.
The trasnfer of the first two values "NULL" и "0" means that the current chart will be used.
The name of the corresponding file (without extension of mq4) is used as custom indicator name.
If the last but one parameter is 0, it means that we are interested in the data from the very first indicator array.
The last parameter being 0 means that we are interested in the value of the last element (i.e., the most recent, current value) of indicator array requested.
Parameters are transferred in the function of custom indicator calculation in the order they have been described. For example,
custom indicator named "Ichimoku" and having parameters of (9,26,52) will be called as follows:
Strictly speaking, custom indicator parameters do not need to be necessarily transferred to the function.
If no one extern variable is defined in the program, it is useless to trasnfer parameters. Or, if necessary, initial values can be used
that are used in description of parameters. For example, the same custom indicator without parameters will be called as follows:
iCustom(NULL, 0, "Ichimoku", 0, shift);
This means that the values will be used that initialize variables "Tenkan", "Kijun", "Senkou", i.e., 9, 26, and 52.
However, if one custom indicator having different sets of parameters is called in one Expert Advisor, default settings are highly not recommended to be used.
It must be noted that the surplus of custom indicators as well as incorrectly written ones can decelerate the work of client terminal significantly!
Warning: All rights for these materials
are reserved by MetaQuotes Software Corp. Complete or partial reproduction is prohibited.
Warning:
All rights to these materials are reserved by MetaQuotes Software Corp.
Copying or reprinting of these materials in whole or in part is prohibited.