int ArrayInitialize(object array[ ], double value)
Sets all elements of a numeric array to the same value. Returns the count of initialized elements.
数値配列のすべての要素に同じ値を設定します。初期化された要素の数を返します。
Note: It is not recommended to initialize index buffers in the custom indicator init() function as such functions are initialized automatically with an “empty value” at allocation and re-allocation of buffers.
注意:この関数で、カスタム インディケータのバッファの割り当てや再割り当て時に “empty value” を用いて自動的に初期化する関数のような init() 関数のインデックス バッファを初期化することは、推奨できません。
Parameters:
パラメータ:
1 2 3 4 5 | <b>array[]</b> - Numeric array to be initialized. 初期化する数値配列。 <b>value</b> - New value to be set. セットする新しい値。 |
Sample:
サンプル:
1 2 3 | //---- initializing of all array elements with 2.1 double myarray[10]; ArrayInitialize(myarray,2.1); |