Page 612 of 2170

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 2:17 am
by tok
Hi Mr Tools
can u pls help to make this indi to compatible with new MT4

your help will be appreciated

thank you

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 2:41 am
by yovin555
mrtools wrote: Fri May 17, 2019 2:04 am

On the indicator 1M or current time frame.
I have done it. still the issue is there. it is happening because the arrows when they appear, they could also disappear during a candle formation if the trend goes the other way. so signals not being formed once for all. they at times appear and disappear. this causes false signals.
Is there a way to counter this?
Brgds
Yovin

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 2:47 am
by mrtools
tok wrote: Fri May 17, 2019 2:17 am Hi Mr Tools
can u pls help to make this indi to compatible with new MT4

your help will be appreciated

thank you
Its working for me, when you compile it give 3 warnings, which far as I can tell don't hurt anything.

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 6:56 pm
by Rarno
I know a lot of trader traded binary option using Martingale Money Management strategy. The one thing that Martingale traders afraid of is when there is a waterfall. I wonder if there is such an indicator to forewarn you that a waterfall is coming or expected ? If there isn't one, is there a possibility for great mind like Mrtools, mladen and mntiwana to consider developing one ? It will help martingale traders (including me) a lot.

Thanks!

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 7:08 pm
by bluebird
hey,
can someone please add the slope colour to this indicator?

Re: MT4 Indicator requests and ideas

Posted: Fri May 17, 2019 10:52 pm
by Arina
Hello ! Please make the levels draw on both sides of the MA

Re: MT4 Indicator requests and ideas

Posted: Sat May 18, 2019 3:52 am
by mrtools
bluebird wrote: Fri May 17, 2019 7:08 pm hey,
can someone please add the slope colour to this indicator?
Made this version awhile back, with either dots or a colored line.

Re: MT4 Indicator requests and ideas

Posted: Sat May 18, 2019 4:06 am
by mrtools
Arina wrote: Fri May 17, 2019 10:52 pm Hello ! Please make the levels draw on both sides of the MA
If your talking about changing it so you have lines above and below the ma on lines 261 to 268 you can change from

Code: Select all

if(level_9>0) buffer_level_9[i] = Buffer[i] + level_9*_Point;
      if(level_10>0) buffer_level_10[i] = Buffer[i] + level_10*_Point;
      if(level_11>0) buffer_level_11[i] = Buffer[i] + level_11*_Point;
      if(level_12>0) buffer_level_12[i] = Buffer[i] + level_12*_Point;
      if(level_13>0) buffer_level_13[i] = Buffer[i] + level_13*_Point;
      if(level_14>0) buffer_level_14[i] = Buffer[i] + level_14*_Point;
      if(level_15>0) buffer_level_15[i] = Buffer[i] + level_15*_Point;
      if(level_16>0) buffer_level_16[i] = Buffer[i] + level_16*_Point;
to
if(level_9>0) buffer_level_9 = Buffer - level_9*_Point;
if(level_10>0) buffer_level_10 = Buffer - level_10*_Point;
if(level_11>0) buffer_level_11 = Buffer - level_11*_Point;
if(level_12>0) buffer_level_12 = Buffer - level_12*_Point;
if(level_13>0) buffer_level_13 = Buffer - level_13*_Point;
if(level_14>0) buffer_level_14[i] = Buffer[i] - level_14*_Point;
if(level_15>0) buffer_level_15[i] = Buffer[i] - level_15*_Point;
if(level_16>0) buffer_level_16[i] = Buffer[i] - level_16*_Point;

Re: MT4 Indicator requests and ideas

Posted: Sat May 18, 2019 5:28 am
by Arina
Thank ! Please see why the error ?

Re: MT4 Indicator requests and ideas

Posted: Sat May 18, 2019 6:06 am
by mrtools
Arina wrote: Sat May 18, 2019 5:28 am Thank ! Please see why the error ?
On line 7 change this

Code: Select all

#property indicator_buffers	2
to

Code: Select all

#property indicator_buffers	18
and on line 150 add this

Code: Select all

return(0);