無料でロボットをダウンロードする方法を見る
Facebook上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
インディケータ

Stochastic with Noise Reduction - MetaTrader 4のためのインディケータ

ビュー:
44202
評価:
(9)
パブリッシュ済み:
2009.11.23 11:07
アップデート済み:
2014.04.21 14:54
\MQL4\Include\
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

Description:

Standard Stochastic Oscillator with sensitivity feature.

It has the same parameters, as a standard Stochastic, but there is an additional "sensivity" parameter (Sens in the parameters window)

It allows to consider oscillations only below some predefined threshold, specified in points. This way we can reduce a lot of false signals.

The classical Lane Stohastic locates the current price between a maximum and a minimum prices for some number of bars, defined by %K (Kperiod) value, and it doen't distingush the difference between extremums, for example 1 point or 100 points. For these two cases the results will be the same, and we will get the overbought/oversold signals.

But using some threshold, we can consinder only significiant oscillations.

At Fig. 1 (EURUSD, 1M), the price chart, standard stochastic and the indicator proposed are presented.

Image:

Fig 1.

The indicator fields is the same as for iStochastic, the difference is that there is an additional parameter Sens - sensivity.

The output buffers are the same: 0-Stochastic value itself, 1-signal line.

double iCustom(string symbol, int timeframe, "_StochNR", int %Kperiod, int %Dperiod, 
int slowing, int method, int price_field, int Sens, int mode, int shift); // StochNR added new Sens field

double iStochastic(string symbol, int timeframe, int %Kperiod, int %Dperiod, 
int slowing, int method, int price_field, int mode, int shift) // standard stochastic 

For a practical use, it is possible to calll it as specified above, but better to perform it in another way. Just add some code to yours Stoch function:

double Stoch(int Kperiod, int Slowing, int PriceFild, double sens, int i) {  
   // maximal and minimal prices
   double max,min,c;
   for(int j=i; j<i+Slowing; 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<sens) {
      sens/=2;
      max+=sens; min-=sens;
     }
   delta=max-min;
   if(delta==0) double s0=1;
   else s0=(c-min)/delta;

   return(100*s0);
  }

It's clear, that if you need a signal line, you need an additional moving average of its value. Another way is to get it from the iCustom's 1st buffer, but it will be slow.

As you see, now the name is more informative, there is a price calculation type. If sensivity is defined greater than 0, its value is added to the oscillator's name.


Editor's remark:

Note that it's a mirror translation of the original Russian version.

If you have any questions to the author, suggestions or comments, it's better to post them there.

If you have found this code useful for trading or educational purposes, don't forget to thank author.

MetaQuotes Ltdによってロシア語から翻訳されました。
元のコード: https://www.mql5.com/ru/code/9279

SAR Oscillator SAR Oscillator

Just Close - Parabolic SAR

Equity Recorder Equity Recorder

Record the performance of individual strategies real time in offline charts.

Opened positions indicator Opened positions indicator

It shows a brief information about all of the positions opened. It can be useful, if yours expert advisor trades many positions simultaneously.

Open and Close positions using the lines Open and Close positions using the lines

It opens and closes positions using the crossing of the movable lines.