Re: MT4 Indicator requests and ideas
Posted: Thu Jul 09, 2020 4:24 am
Should be better in this version.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.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
Try this one.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
Don't have one, sorry.
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?
Slope coloring added.Deez wrote: Thu Jul 09, 2020 4:05 am Hi MrTools,
Could you please add slope coloring to this indi, thanks for your time.
Used the ema version on this one.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?
On what?
Hi mrtoolsmrtools 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.
Code: Select all
doAlert(" Buy")Code: Select all
doAlert(whichBar," BUY");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];