string ObjectGetFiboDescription(string name, int index)
The function returns the level description of a Fibonacci object. The amount of Fibonacci levels depends on the object type. The maximum amount of Fibonacci levels is 32.
この関数は、フィボナッチ オブジェクトのレベルの説明を返します。フィボナッチ レベルの総数は、オブジェクト型に依存します。フィボナッチ レベルの最大数量は 32 です。
To get the detailed error information, one has to call the GetLastError() function.
詳細なエラー情報を受け取るためには、GetLastError() 関数を呼び出さなくてはなりません。
See also ObjectSetFiboDescription() function.
参照 ObjectSetFiboDescription() 関数
Parameters:
パラメータ:
1 2 3 4 5 | <b>name</b> - Fibonacci object name. フィボナッチ オブジェクトの名前。 <b>index</b> - Index of the Fibonacci level (0-31). フィボナッチ レベルのインデックス(0~31) |
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 | #include <stdlib.mqh> ... string text; for(int i=0;i<32;i++) { text=ObjectGetFiboDescription(MyObjectName,i); //---- checking whether the objects has less than 32 levels if(GetLastError()!=ERR_NO_ERROR) break; Print(MyObjectName,"level: ",i," description: ",text); } |