MQL4 Reference Chart Operations ChartIndicatorDelete
|
ChartIndicatorDeleteRemoves an indicator with a specified name from the specified chart window. The command is added to chart message queue and executed only after all previous commands have been processed.
Parameters chart_id [in] Chart ID. 0 denotes the current chart. sub_window [in] Number of the chart subwindow. 0 denotes the main chart subwindow. const indicator_shortname [in] The short name of the indicator which is set in the INDICATOR_SHORTNAME property with the IndicatorSetString() function. To get the short name of an indicator use the ChartIndicatorName() function. Return Value Returns true if the command has been added to chart queue, otherwise false. To get error details use the GetLastError() function. Note If two indicators with identical short names exist in the chart subwindow, the first one in a row will be deleted. If other indicators on this chart are based on the values of the indicator that is being deleted, such indicators will also be deleted. If the short name of an indicator is not set explicitly, then the name of the file containing the source code of the indicator will be specified during compilation. The indicator's short name should be formed correctly. It will be written to the INDICATOR_SHORTNAME property using the IndicatorSetString() function. It is recommended that the short name should contain values of all the input parameters of the indicator, because the indicator to be deleted from the chart by the ChartIndicatorDelete() function is identified by the short name. Example of deleting an indicator after initialization has failed:
See also ChartIndicatorName(), ChartIndicatorsTotal(), IndicatorSetString() |