bool SetIndexBuffer(int index, double array[ ])
Binds the array variable declared at a global level to the custom indicator pre-defined buffer. The amount of buffers needed to calculate the indicator is set with the IndicatorBuffers() function and cannot exceed 8. If it succeeds, TRUE will be returned, otherwise, it will be FALSE. To get the extended information about the error, one has to call the GetLastError() function.
カスタム インディケータの定義済みバッファを、グローバル レベルで宣言された配列変数に結合します。インディケータを計算するために、必要なバッファの容量は IndicatorBuffers() 関数で設定され、8 を超えることはできません。もし、結合が成功した場合は、TRUE が返され、そうでない場合は、FALSE になります。拡張エラー情報を取得するには、GetLastError() 関数を呼び出して取得します。
Parameters:
パラメータ:
1 2 3 4 5 | <b>index</b> - Line index. Must lie between 0 and 7. ライン インデックス。0~7の間である必要があります。 <b>array[]</b> - Array that stores calculated indicator values. 計算されたインディケータの値を格納しておく配列。 |
Sample:
サンプル:
1 2 3 4 5 6 | double ExtBufferSilver[]; int init() { SetIndexBuffer(0, ExtBufferSilver); // first line buffer // ... } |