Page 1027 of 2042

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 4:24 am
by mrtools
camisa wrote: Wed Jul 08, 2020 8:20 pm

hello mrtools
could you please check the audio alerts on current bar? I think it isn't working
Should be better in this version.

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 4:52 am
by mrtools
SpecialFX wrote: Wed Jul 08, 2020 10:26 pm Hi all,

Would it be possible to add average options to this indicator, like in the picture?

Thanks in advance
Try this one.

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 4:53 am
by mrtools
markstep wrote: Thu Jul 09, 2020 1:00 am
Don't have one, sorry.

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 5:08 am
by SpecialFX
mrtools wrote: Thu Jul 09, 2020 4:52 am

Try this one.
Thx - I think you made this for me previously, but it doesnt use EMA calculation for the ATR values. Is it possible to add the feature to the indicator I uploaded today?

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 5:10 am
by mrtools
Deez wrote: Thu Jul 09, 2020 4:05 am Hi MrTools,

Could you please add slope coloring to this indi, thanks for your time.
Slope coloring added.

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 5:23 am
by mrtools
SpecialFX wrote: Thu Jul 09, 2020 5:08 am

Thx - I think you made this for me previously, but it doesnt use EMA calculation for the ATR values. Is it possible to add the feature to the indicator I uploaded today?
Used the ema version on this one.

Re: MT4 Indicator requests and ideas

Posted: Thu Jul 09, 2020 6:13 pm
by markstep
[quote=mrtools post_id=1295414391 time=1594234384 user_id=4864807]


Can you add alert MR.TOOLS on zones that are touched please? thank you

Re: MT4 Indicator requests and ideas

Posted: Fri Jul 10, 2020 1:08 am
by mrtools
markstep wrote: Thu Jul 09, 2020 6:13 pm
On what?

Re: MT4 Indicator requests and ideas

Posted: Fri Jul 10, 2020 2:45 am
by cvdm7756
Good Day Mr Tools,
Do you have in your collection of tools, an Indicator which Alerts to a Moving Average - SMA, EMA, LWMA,HMA crossing of The Daily Open Level or a Fixed Price Level?
If you have not one on hand, would you please be kind enough to code a Non Lagging MA (from a selection of the above Moving averages) when the Ma Cross and/or Price Candle open either on the Upside or the Downside of the Daily Open Level or selected Fixed Price Level?

Your assistance in this regard would be much appreciated.

Thank you.

Re: MT4 Indicator requests and ideas

Posted: Fri Jul 10, 2020 7:38 am
by daro84
mrtools wrote: Mon Jun 01, 2020 4:30 am

This version I changed from trend colored bars to candles colored by trend, and seems to be better, hopefully fixing the problem you had.
Hi mrtools
Wonder if you can fix the alarm code of this indi since the mql4 was not released (i think, i didnt find it).
I use some indis in Renko charts, and I detected sometimes it keeps giving the alarm+alert on every price movement. I also found that other indis coded the same way dont have this issue, so I checked 2 open source indis with and without the issue and found and fixed the code that keeps the alert repeating forever at least in Renko charts.

The ones having the issue are indis with alert code as follow (as example):

Code: Select all

doAlert(" Buy")
and found that adding the "loop bar" fixes the issue:

Code: Select all

doAlert(whichBar," BUY");
and of course, the corrections on the functions code.

Code: Select all

void doAlert(int forBar, string doWhat)
{
   static string   previousAlert="nothing";
   static datetime previousTime;
   string message;
   
      if (previousAlert != doWhat || previousTime != Time[forBar]) {
       previousAlert  = doWhat;
       previousTime   = Time[forBar];
I think you will catch me hahahA
I didnt test them in normal candles, maybe this is only happening with renko/offline charts but if you can fix it I will appreciate it.
Thank you
Damian