double iStdDevOnArray(double array[ ], int toral, int ma_period, int ma_shift, int ma_method, int shift)
Calculation of the Standard Deviation indicator on data stored in a numeric array. Unlike iStdDev(…), the iStdDevOnArray 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 ArraySetAsSeries function.
標準偏差 インディケータを、数値配列に格納されているデータで計算します。iStdDev(…) と異なり、iStdDevOnArray 関数は、シンボル名、期間、適用された価格データを受け取りません。事前に価格データを準備する必要があります。インディケータは、左から右に計算されます。直列配列(すなわち、右から左)の配列要素にアクセスするためには、ArraySetAsSeries 関数を使用する必要があります。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 | double val=iStdDevOnArray(ExtBuffer,100,10,0,MODE_EMA,0); |