Chaikin Oscillator CHO Indicator For MT5

Chaikin Oscillator CHO Indicator For MT5

Table Of Contents:

  1. Chaikin Oscillator CHO Indicator For MT5
  2. Chaikin Oscillator CHO Indicator For MT5インストール
  3. Chaikin Oscillator CHO Indicator For MT5パラメーター
  4. Chaikin Oscillator CHO Indicator For MT5
  5. コードの主要部分

Chaikin Oscillator CHO Indicator For MT5は、累積分布インジケーターと指数移動平均に基づいています。 EMAアルゴリズムは、ADインジケーターの値に適用されます。チャイキンオシレーターの値を計算するには、ADインジケーターの期間3のEMAと期間10のEMAを計算します。 EMA(3)とEMA(10)の違いは、ヒストグラムに描かれる値です。ボリュームはADインジケーターの一部であるため、Chaikinオシレーターはボリュームから値を取得し、リーディングインジケーターになる可能性があります。

FREE Chaikin Oscillator (CHO) Indicator

Download the FREE Chaikin Oscillator (CHO) Indicator for MT5.

To receive my email 100% sure: 
Put my email on your whitelist!

 

Partially Automated Trading Besides Your Day Job

Alerts In Real-Time When Divergences Occur

 

Chaikin Oscillator CHO Indicator For MT5インストール

上記のフォームからインジケーターをダウンロードした後、zipファイルを解凍する必要があります。次に、ファイルcho.mq5MT5インストールのMQL5Indicatorsフォルダーにコピーする必要があります。その後、MT5を再起動してください。そうすると、インジケーターのリストにインジケーターが表示されます。

Chaikin Oscillator CHO Indicator For MT5パラメーター

Chaikin Oscillator CHO Indicator For MT5は、構成する4 パラメーターがあります。

input int                 InpFastMA=3;                // Fast MA period input int                 InpSlowMA=10;               // Slow MA period input ENUM_MA_METHOD      InpSmoothMethod=MODE_EMA;   // MA method input ENUM_APPLIED_VOLUME InpVolumeType=VOLUME_TICK;  // Volumes 

Chaikin Oscillator CHO Indicator For MT5

Chaikin Oscillator CHO Indicator For MT5は、 4 バッファーを提供します。

SetIndexBuffer(0,ExtCHOBuffer,INDICATOR_DATA); SetIndexBuffer(1,ExtFastEMABuffer,INDICATOR_CALCULATIONS); SetIndexBuffer(2,ExtSlowEMABuffer,INDICATOR_CALCULATIONS); SetIndexBuffer(3,ExtADBuffer,INDICATOR_CALCULATIONS); 

コードの主要部分

int OnCalculate(const int rates_total,                 const int prev_calculated,                 const datetime &Time[],                 const double &Open[],                 const double &High[],                 const double &Low[],                 const double &Close[],                 const long &TickVolume[],                 const long &Volume[],                 const int &Spread[])   {    int i,limit; //--- check for rates total    if(rates_total lt InpSlowMA)       return(0); // not enough bars for calculation //--- preliminary calculations    if(prev_calculated lt 1)      {       limit=1;       //--- first values       if(InpVolumeType==VOLUME_TICK)          ExtADBuffer[0]=AD(High[0],Low[0],Close[0],TickVolume[0]);       else          ExtADBuffer[0]=AD(High[0],Low[0],Close[0],Volume[0]);       ExtSlowEMABuffer[0]=ExtADBuffer[0];       ExtFastEMABuffer[0]=ExtADBuffer[0];      }    else limit=prev_calculated-1; //--- calculate AD buffer    if(InpVolumeType==VOLUME_TICK)      {       for(i=limit;i lt rates_total && !IsStopped();i++)          ExtADBuffer[i]=ExtADBuffer[i-1]+AD(High[i],Low[i],Close[i],TickVolume[i]);      }    else      {       for(i=limit;i lt rates_total && !IsStopped();i++)          ExtADBuffer[i]=ExtADBuffer[i-1]+AD(High[i],Low[i],Close[i],Volume[i]);      } //--- calculate EMA on array ExtADBuffer    AverageOnArray(InpSmoothMethod,rates_total,prev_calculated,0,InpSlowMA,ExtADBuffer,ExtSlowEMABuffer,weightslow);    AverageOnArray(InpSmoothMethod,rates_total,prev_calculated,0,InpFastMA,ExtADBuffer,ExtFastEMABuffer,weightfast); //--- calculate chaikin oscillator    for(i=limit;i lt rates_total && !IsStopped();i++)       ExtCHOBuffer[i]=ExtFastEMABuffer[i]-ExtSlowEMABuffer[i]; //--- return value of prev_calculated for next call    return(rates_total);   } //+------------------------------------------------------------------+ 

 

About Me

I'm Mike Semlitsch the owner of PerfectTrendSystem.com. My trading career started in 2007. Since 2013 I have helped thousands of traders to take their trading to the next level. Many of them are now constantly profitable traders. 

The following performance was achieved by me while trading live in front of hundreds of my clients:

Connect With Me:  

Results From 5 Months!
This service starts soon! Be the first who get's notified when it begins!

This FREE Indicator Can Transform
Your Trading!

FREE Indicator + Telegram Group


Request the Ultimate Double Top/Bottom Indicator which is used by 10,000+ traders.