KDJ Indicator For MT4

KDJ Indicator For MT4

Table Of Contents:

  1. KDJ Indicator For MT4
  2. Installation du KDJ Indicator For MT4
  3. Paramètres du KDJ Indicator For MT4
  4. Tampons du KDJ Indicator For MT4
  5. Parties principales du code

L' KDJ Indicator For MT4 est dérivé de l'oscillateur stochastique. Il se compose de trois lignes -% K,% D et% J. Le% J est égal à la différence entre% K et% D. Lorsque la ligne% J est comprise entre 20 et 80, le marché est supposé être en territoire neutre. Lorsque la ligne% J est inférieure à 20, le prix est dit en survente et lorsqu'il est supérieur à 80, le prix sous-jacent est réputé être suracheté. L'indicateur KDJ pour MT4 peut être appliqué sur des périodes et des classes d'actifs.

FREE KDJ Indicator

Download the FREE KDJ Indicator for MT4.

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

 

Installation du KDJ Indicator For MT4

Après avoir téléchargé l'indicateur via le formulaire ci-dessus, vous devez décompresser le fichier zip. Ensuite, vous devez copier le fichier KDJ.mq4 dans le dossier MQL4Indicators de votre installation MT4 . Ensuite, redémarrez MT4 et vous pourrez voir l’indicateur dans la liste des indicateurs.

Paramètres du KDJ Indicator For MT4

KDJ Indicator For MT4 a des paramètres 3 à configurer.

extern int       nPeriod=9; extern double    factor_1=0.6666666; extern double    factor_2=0.3333333; 

Tampons du KDJ Indicator For MT4

Le KDJ Indicator For MT4 4 KDJ Indicator For MT4 fournit des tampons 4 .

SetIndexBuffer(0,percentK); SetIndexBuffer(1,percentD); SetIndexBuffer(2,percentJ); SetIndexBuffer(3,RSV); 

Parties principales du code

int start()   {    int    counted_bars=IndicatorCounted(); //----    int i, k, num;    double Ln, Hn, Cn; //----    i = Bars - counted_bars - 1;    num = Bars - nPeriod;        while(i gt =0)      {          Cn = iClose(NULL,0,i); Ln = iClose(NULL,0,i); Hn = iClose(NULL,0,i);          for(k=0; k lt nPeriod; k++){             if (Ln  gt  iLow(NULL,0,i+k)) Ln = iLow(NULL,0,i+k);             if (Hn  lt  iHigh(NULL,0,i+k)) Hn = iHigh(NULL,0,i+k);          }           if (Hn-Ln != 0) RSV[i] = (Cn-Ln)/(Hn-Ln)*100; else RSV[i] = 50;           if (i  gt = num) {             percentK[i] = factor_1 * 50 + factor_2 * RSV[i];             percentD[i] = factor_1 * 50 + factor_2 * percentK[i];          } else {             percentK[i] = factor_1 * percentK[i+1] + factor_2 * RSV[i];             percentD[i] = factor_1 * percentD[i+1] + factor_2 * percentK[i];          }          percentJ[i] = 3 * percentD[i] - 2 * percentK[i];        i--;      }  //----    return(0);   } //+------------------------------------------------------------------+ 

 

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.