Re: MT4 Indicator requests and ideas
Posted: Sun Jul 12, 2020 8:54 pm
Add Fibo to the Channel
Couldn't find anything with the other version, but made some minor changes maybe it will help.daro84 wrote: Fri Jul 10, 2020 7:38 am
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):
and found that adding the "loop bar" fixes the issue:Code: Select all
doAlert(" Buy")
and of course, the corrections on the functions code.Code: Select all
doAlert(whichBar," BUY");
I think you will catch me hahahACode: 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 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
Not sure if it's possible or not.Devvasu525 wrote: Fri Jul 10, 2020 9:57 am Mrtools,
Is their any possible way to filter these indicator....i mean by adding moving averages crossovers or something else which can help to filter the arrows...i am not sure that its possible or not but i will wait for your reply
Are you aware the colors can repaint?TEAMTRADER wrote: Sat Jul 11, 2020 8:34 pm Could this indicator be amended to show a shift facility please?
Thanks
TEAMTRADER
Can you try sir....just for one time give a try that it can work or not....you always helped me, so if its not possible then no worry...you always provide us gold, sometimes we can understand that every need can't be fulfilled...but if possible just give it a chance....
I wasn't but I am not worried about the colour rather than the price being clear of it.
Hi Mrtools. I started testing this indicator on M15 tf, but set indicator to H4 and to alert on current (still opened) bar.
Thanks mrtools it works now! you are the bestmrtools wrote: Mon Jul 13, 2020 3:15 am
Couldn't find anything with the other version, but made some minor changes maybe it will help.