Chaikin Oscillator CHO Indicator For MT5

Chaikin Oscillator CHO Indicator For MT5

Table Of Contents:

  1. Chaikin Oscillator CHO Indicator For MT5
  2. Instalowanie Chaikin Oscillator CHO Indicator For MT5
  3. Parametry Chaikin Oscillator CHO Indicator For MT5
  4. Bufory słowa Chaikin Oscillator CHO Indicator For MT5
  5. Główne części Kodeksu

Chaikin Oscillator CHO Indicator For MT5 jest oparty na wskaźniku rozkładu akumulacji i wykładniczej średniej ruchomej. Algorytm EMA jest stosowany do wartości wskaźnika AD. Aby obliczyć wartość Oscylatora Chaikin, oblicza się EMA z okresem 3 i EMA z okresem 10 wskaźnika AD. Różnica między EMA (3) a EMA (10) to wartość narysowana na histogramie. Ponieważ objętość jest częścią wskaźnika AD, również Oscylator Chaikin wyprowadza wartości z objętości i dlatego może być wiodącym wskaźnikiem.

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

 

Instalowanie Chaikin Oscillator CHO Indicator For MT5

Po pobraniu wskaźnika za pomocą powyższego formularza musisz rozpakować plik zip. Następnie musisz skopiować plik cho.mq5 do folderu MQL5Indicators instalacji MT5 . Następnie uruchom ponownie MT5, a wtedy będziesz mógł zobaczyć wskaźnik na liście wskaźników.

Parametry Chaikin Oscillator CHO Indicator For MT5

Chaikin Oscillator CHO Indicator For MT5 4 Chaikin Oscillator CHO Indicator For MT5 ma parametry 4 do skonfigurowania.

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 

Bufory słowa Chaikin Oscillator CHO Indicator For MT5

Chaikin Oscillator CHO Indicator For MT5 zapewnia bufory 4 .

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

Główne części Kodeksu

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.