MQL5 - Language of trade strategies built-in the MetaTrader 5 client terminal

Automated Trading Language Documentation

Subscribe to signal
Sieg
142.93%, 31 774.63 USD
Screenshot
اخابر, H1
Demo
VIP Dynamic Support ResistanceVIP Dynamic Support Resistance Try product
VIP Dynamic Support Resistance
Author: kinglion7
The Last Crusade The Last Crusade Demo_FileReadInteger Indicator
Demo_FileReadInteger
Author: Automated-Trading

IndicatorSetString

The function sets the value of a corresponding indicator property. The indicator property must be of the string type. There are 2 variants of the function.

Call indicating identifier of the property.

bool  IndicatorSetString(
   int     prop_id,           // identifier
   string  prop_value         // value to be set
   );

Call indicating the identifier and modifier of the property.

bool  IndicatorSetString(
   int     prop_id,           // identifier
   int     prop_modifier,     // modifier 
   string  prop_value         // value to be set
   )

Parameters

prop_id

[in] The value can be one of the values of the ENUM_CUSTOMIND_PROPERTY_STRING enumeration.

prop_modifier

[in]  Modifier of the specified property. Only level properties require a modifier.

prop_value

[in]  The value of the property.

Return Value

If successful, returns true, otherwise - false.


Updated: 2009.11.20