double iCCIOnArray(double array[ ], int total, int peropd, int shift)
Calculation of the Commodity Channel Index on data stored in a numeric array. Unlike iCCI(…), the iCCIOnArray 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.
CCI インディケータを、数値配列に格納されているデータで計算します。iCCI(…) と異なり、iCCIOnArray 関数は、シンボル名、期間、適用された価格データを受け取りません。事前に価格データを準備する必要があります。インディケータは、左から右に計算されます。直列配列(すなわち、右から左)の配列要素にアクセスするためには、ArraySetAsSeries 関数を使用する必要があります。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 | if(iCCIOnArray(ExtBuffer,total,12,0)>iCCI(NULL,0,20,PRICE_TYPICAL, 0)) return(0); |