Easy Trading
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
Le deal à ne pas rater :
Coffret dresseur d’élite ETB Pokémon EV06 Mascarade Crépusculaire
56.90 €
Voir le deal

Aller en bas
Springfellow-Hawk
Springfellow-Hawk
Messages : 539
Date d'inscription : 08/11/2009
Age : 50
Localisation : South beach california

Stochastique Noise Reduction.mq4 Empty Stochastique Noise Reduction.mq4

18/3/2010, 2:12 am
Réglage de la reduction du bruit sur indicateur dans la fenetre:

1) Changer les periodes des stochastiques
2)Sto c/c , propriété : -->Parametres d entrees ----> Dmethode et pricefield , a regler sur 1,2....




code



/*
????? ?????????? ?? ??.????????
iCustom(string symbol, int timeframe, "_StochNR", int %Kperiod, int %Dperiod,
int slowing, int method, int price_field, double sens, int mode, int shift);
iCustom(NULL,0,"_StochNR",Kperiod,Dperiod,Slowing,Dmethod,PriceFild,Sens, 0,i);
*/

#property indicator_separate_window // ? ???. ????
#property indicator_buffers 2
#property indicator_color1 LightSeaGreen // ???????
#property indicator_style1 0
#property indicator_color2 Red // ??????????
#property indicator_style2 2
#property indicator_maximum 100
#property indicator_minimum 0
#property indicator_level1 80
#property indicator_level2 20

// ??????? ?????????
extern int Kperiod=19; // %K
extern int Dperiod=4; // %D ??????????
extern int Slowing=6; // ??????????
extern int Dmethod=0; // ??? MA ??????????: 0-SMA, 1-EMA
extern int PriceFild=0; // ??? ????: 0-High/Low; 1-Close/Close
extern int Sens=0; // ???????????????? ? ??.
int History=0; // ??????? ?????????: 0 - ??? ????

// ???.??????
double Main[]; // ???????
double Signal[]; // ??????????

// ????? ??????????
bool first=1; // ???? ??????? ???????
double sens; // ???????????????? ? ?????
double kd; // ?????. EMA ??? ??????????

int init()
{
first=1;
sens=Sens*Point; // ???????????????? ? ?????
if(Dmethod==1) kd=2.0/(1+Dperiod); // ?????. EMA ??? ??????????

// ????? ???????
SetIndexBuffer(0,Main);
SetIndexStyle(0,DRAW_LINE);
string _str="("+Kperiod+","+Slowing+")";
SetIndexLabel(0,"Main"+_str);
// ????? ??????????
SetIndexBuffer(1,Signal);
SetIndexStyle(1,DRAW_LINE);
_str="("+Dperiod+")";
SetIndexLabel(1,"Signal"+_str);

// ???????? ???
if(Sens!=0) string ShName=Sens+" ";
ShName=ShName+"Stoch ";
if(PriceFild==0) ShName=ShName+"H/L";
else ShName=ShName+"C/C";
ShName=ShName+" ("+Kperiod+","+Dperiod+","+Slowing+")";
IndicatorShortName(ShName);

return(0);
}

int reinit() // ?-? ?????????????? ?????????????
{
ArrayInitialize(Main,0.0);
ArrayInitialize(Signal,0.0);
return(0);
}

int start()
{
int ic=IndicatorCounted();
if(!first && Bars-ic-1>1) ic=reinit(); first=0;
int limit=Bars-ic-1; // ???-?? ??????????
if(History!=0 && limit>History) limit=History-1; // ???-?? ?????????? ?? ???????

for(int i=limit; i>=0; i--) { // ???? ????????? ?? ???? ?????
// ???????
Main[i]=Stoch(Kperiod, Slowing, PriceFild, sens, i);
// ???????????
switch(Dmethod) {
case 1: // EMA
Signal[i]=kd*Main[i]+(1-kd)*Signal[i+1]; break;
case 0: // SMA
int sh=i+Dperiod;
double ma=Signal[i+1]*Dperiod-Main[sh];
Signal[i]=(ma+Main[i])/Dperiod;
}
}
return(0);
}

double Stoch(int Kperiod, int Slowing, int PriceFild, double sens, int i) {
// ?????????? ????
double max,min,c;
for(int j=i; j if(PriceFild==1) { // ?? Close
max+=Close[ArrayMaximum(Close,Kperiod,j)];
min+=Close[ArrayMinimum(Close,Kperiod,j)];
}
else { // ?? High/Low
max+=High[ArrayMaximum(High,Kperiod,j)];
min+=Low[ArrayMinimum(Low,Kperiod,j)];
}
c+=Close[j];
}

double delta=max-min;
if(delta double sens2=sens/2;
max+=sens2; min-=sens2;
}
delta=max-min;
if(delta==0) double s0=1;
else s0=(c-min)/delta;

return(100*s0);
}
Revenir en haut
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum