void Comment( …)
The function outputs the comment defined by the user in the left top corner of the chart. Parameters can be of any type. Amount of passed parameters cannot exceed 64.
この関数は、ユーザーが定義したコメントをチャートの左上に出力します。パラメータは、任意の型を使用できます。渡されたパラメータの量は、64個を超えることはできません。
Arrays cannot be passed to the Comment() function. Arrays should be output elementwise.
配列は Comment() 関数に渡すことはできません。配列では、要素を出力する必要があります。
Data of double type output with 4 digits after the decimal point. To output with more precision, use the DoubleToStr() function.
double 型のデータは、小数点第4位まで出力されます。もっと高い精度で出力するなら、DoubleToStr() 関数を使用します。
Data of bool, datetime and color types will be output as their numeric presentation.
bool、datetime、color 型のデータは、数字表記で出力されます。
To output values of datetime type as strings, convert them with the TimeToStr() function.
datetime 型の値を文字列変換して出力するには、TimeToStr() 関数を使います。
Parameters:
パラメータ:
1 2 | ... - Any values separated by commas. It can be up to 64 parameters. どの値もコンマで分割され、最高64個のパラメータにできます。 |
Sample:
サンプル:
1 2 | double free=AccountFreeMargin(); Comment("Account free margin is ",DoubleToStr(free,2),"\n","Current time is ",TimeToStr(TimeCurrent())); |