テクニカルインジケータ関数 MQL4関数 iCCIOnArray 配列に格納した価格データを基にしてCCI(Commodity Channel Index)インジケータを計算し、その値を返します。 iCCIOnArray double iCCIOnArray( double array[], // 配列データ int total, // 配列要素数 int period, // 平均... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iCCI CCI(Commodity Channel Index)インジケータを計算し、その値を返します。 iCCI double iCCI( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 int applied_price, // 適用価格 i... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iBullsPower ブルパワーインジケータを計算し、その値を返します。 iBullsPower double iBullsPower( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 int applied_price, // 適用価格 int shift ... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iBandsOnArray 配列に格納した価格データを基にしてボリンジャーバンドインジケータを計算し、その値を返します。 iBandsOnArray double iBandsOnArray( double array[], // 配列データ int total, // 配列要素数 int period, // 平均期間 double devia... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iBearsPower ベアパワーインジケータを計算し、その値を返します。 iBearsPower double iBearsPower( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 int applied_price, // 適用価格 int shift ... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iATR ATR(Average True Range)インジケータを計算し、その値を返します。 iATR double iATR( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 int shift // シフト ); 引数 symbol-INイ... 2022年3月10日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iAO AO(Awesome Oscillator)オシレーターを計算し、その値を返します。 iAO double iAO( string symbol, // 通貨ペア int timeframe, // 時間軸 int shift // シフト ); 引数 symbol-INインジケータ計算するデータの通貨ペア名。NULL... 2022年3月9日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iAlligator アリゲーターインジケータを計算し、その値を返します。 iAlligator double iAlligator( string symbol, // 通貨ペア int timeframe, // 時間軸 int jaw_period, // ジョーライン平均期間 int jaw_shift, // ジョーラインシフト ... 2022年3月9日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iADX ADXインジケータを計算し、その値を返します。 iADX double iADX( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 int applied_price, // 適用価格 int mode, // ラインインデックス int... 2022年3月9日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iAD AD(累積/分散)インジケータを計算し、その値を返します。 iAD double iAD( string symbol, // 通貨ペア int timeframe, // 時間軸 int shift // シフト ); 引数 symbol-INインジケータ計算するデータの通貨ペア名。NULLは現在の通貨ぺアを意味しま... 2022年3月9日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iAC ビルウィリアムズのAC(アクセラレータ)オシレーターを計算し、その値を返します。 iAC double iAC( string symbol, // 通貨ペア int timeframe, // 時間軸 int shift // シフト ); 引数 symbol-INインジケータ計算するデータの通貨ペア名。NULLは現... 2022年3月9日 セレブパンダ
テクニカルインジケータ関数 MQL4関数 iBands iBands double iBands( string symbol, // 通貨ペア int timeframe, // 時間軸 int period, // 平均期間 double deviation, // 標準偏差 int bands_shift, // バンドシフト int applied_price, /... 2022年3月2日 セレブパンダ