Indicator Modification - page 19

 
friend4you:

Thanks. Borad looks totally different now. It' a pity that many links don't work anymore like in

https://www.mql5.com/en/forum/173874/page283

I can't find these "averages bands"

I like most the atr-bands. Can you please add all your and others ma-invetions to it like oma, allma , tma non-repaint, hull and non-lag ma with adjustable smoothing option  and make a second version with alarm and color change on changing direction of middle line and when bar touches the band?

https://c.forex-tsd.com/forum/206/ATR%20Bands%202.mq4

Try using this one (set the bands mode to 2 for atr bands)

 

Dear Coders!

Thanks for your answers. I like Igorads Indicators. But there are non of your special ma like oma or ocean, adaptive ma etc. in it, just older ma and hull. Indicator vanishes sometimes after change, which is bad on renko, because I cannot change timeframe there.

You cannot setup the atr multiplier and period.

It shows only bands with levels >0. What exactly does 2 there mean?

Is there any other indicators you know with atr bands? I am testing them all several hours.

I found one_more_average_-_bands which goes in that direction but without alarms and it has only oma. Maybe you can add the others to that indicator. It would be a great help and I'm not asking often for help.

 if (BandType == 2) useValue = iATR(NULL,TimeFrame,MA_Period,tfShift);
...
extern double  LevelUp      = 0;
extern double  LevelDown    = 0;
extern double  Level2Up     = 0;
extern double  Level2Down   = 0;
...
 if(TimeFrame > Period())
   { 
      if(cnt_bars>0) cnt_bars--;
      limit = Bars-cnt_bars+TimeFrame/Period()-1;
      
      for(shift=0,y=0;shift<limit;shift++)
      {
      if (Time[shift] < iTime(NULL,TimeFrame,y)) y++; 
      MA[shift] = mMA[mBars-y-1];
         if(Color_Mode == 1)
         {
         Up[shift] = mUp[mBars-y-1];
         Dn[shift] = mDn[mBars-y-1];
         }
         useValue = Point;
            int tfShift = iBarShift(NULL,TimeFrame,Time[shift]);
            if (BandType == 1) useValue = iStdDev(NULL,TimeFrame,MA_Period,0,MODE_SMA,Price,tfShift);
            if (BandType == 2) useValue = iATR(NULL,TimeFrame,MA_Period,tfShift);
            if (LevelUp    >0) levUp[shift] =MA[shift]+useValue*LevelUp;
            if (LevelDown  >0) levDn[shift] =MA[shift]-useValue*LevelDown;
            if (Level2Up   >0) levUp2[shift]=MA[shift]+useValue*Level2Up;
            if (Level2Down >0) levDn2[shift]=MA[shift]-useValue*Level2Down;
      }
 

I would appreciate your help:

Is there any other indicators you know with atr bands? I am testing them all several hours.

 
friend4you:

I would appreciate your help:

Is there any other indicators you know with atr bands? I am testing them all several hours.

Here is a version of averages that can have atr bands

All in all (combining the double smoothing and adaptive) you can have some 150+ types of atr bands in this one


 
Mille gratie- thank you very much, looks very interesting, will test it.
 
mladen:

Try using this one (set the bands mode to 2 for atr bands)

Dear MLADEN,

I have noticed that the indicator is not "refreshing prices" .... is that made on purpose or should be corrected ???


Best Regards

Dimitri

 
dimitri1:

Dear MLADEN,

I have noticed that the indicator is not "refreshing prices" .... is that made on purpose or should be corrected ???


Best Regards

Dimitri

Would you mind explaining what do you mean?

That indicator works as it is supposed to work. Please provide some examples of what do you consider a " is not refreshing prices"

 

I don't see a bigger problem like refreshing. It has really many options even filters. I really like it.

Which of the 23 averages are repainting e. g. tma, if any?

What is "IE/2" and "ADX vma"?

Is it possible to get the mq4-file of it?


Maybe you can change following small things:

Bar coloring mode should not color wigs only candle bodies.

Is it possible to get also a second option of an alarm when bands are touched by price?

Not important: Missing e in Options current "Alerts on currnt bar"

 
friend4you:

I don't see a bigger problem like refreshing. It has really many options even filters. I really like it.

Which of the 23 averages are repainting e. g. tma, if any?

What is "IE/2" and "ADX vma"?

Is it possible to get the mq4-file of it?


Maybe you can change following small things:

Bar coloring mode should not color wigs only candle bodies.

Is it possible to get also a second option of an alarm when bands are touched by price?

Not important: Missing e in Options current "Alerts on currnt bar"

None of the 36 types of averages in the "averages" indicator (nor the derived double smoothed, adaptive or double smoothed adaptive versions, so none of the 144 types) are repainting

As of the IE2 : http://www.motivewave.com/studies/tilson_ie2.htm

As of adxvma : https://www.linnsoft.com/techind/adxvma

And as of mq4 file : sorry

 
mladen:

Would you mind explaining what do you mean?

That indicator works as it is supposed to work. Please provide some examples of what do you consider a " is not refreshing prices"

Dear MLADEN

i have attached requested example. The indicator stopped few bars ago ....

Your comment please.

Best Regards

Dimitri

Reason: