dobule iBandsOnArray(string array[ ], int total, int period, int deviation, intbands_shift, int mode, int shift)
Calculation of the Bollinger Bands indicator on data stored in a numeric array. Unlike iBands(…), the iBandsOnArray function does not take data by symbol name, timeframe, the applied price. The price data must be previously prepared. The indicator is calculated from left to right. To access to the array elements as to a series array (i.e., from right to left), one has to use the ArraySetAsSeriesfunction.
ボリンジャーバンド インディケータを、数値配列に格納されているデータで計算します。iBands(…) と異なり、iBandsOnArray 関数は、シンボル名、期間、適用された価格データを受け取りません。事前に価格データを準備する必要があります。インディケータは、左から右に計算されます。直列配列(すなわち、右から左)の配列要素にアクセスするためには、ArraySetAsSeries 関数を使用する必要があります。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 | if(iBands(ExtBuffer,total,2,0,MODE_LOWER,0)>Low[0]) return(0); |