Re: MT4 Indicator requests and ideas

6112
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

6114
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

6118
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;
These users thanked the author mrtools for the post:
Arina


Who is online

Users browsing this forum: akeo, Amazon [Bot], BeatlemaniaSA and 82 guests