MQL4 Reference
Object functions
ObjectSetFiboDescription
| bool ObjectSetFiboDescription( |
string name, int index, string text) |
The function assigns a new description to a level of a Fibonacci object. The amount of Fibonacci levels depends on the object type.
The maximum amount of Fibonacci levels is 32.
To get the detailed error information, one has to call the GetLastError() function.
Parameters:
| name |
- |
Object name. |
| index |
- |
Index of the Fibonacci level (0-31). |
| text |
- |
New description of the level. |
Sample:
ObjectSetFiboDescription("MyFiboObject",2,"Second line");
|
|
|