Here it is. But there is no point to it as the indicator is repainting.Please help put alert for me on buy and sell signal
Here it is. But there is no point to it as the indicator is repainting.Please help put alert for me on buy and sell signal
One needs an .mq5 file to modify the code. An .ex5 file doesn't work for that.Hi, please can some help add alerts to this indicator. I need to get an alert when cloud color starts.
Thanks.
I have attached .mq5 fileOne needs an .mq5 file to modify the code. An .ex5 file doesn't work for that.
I attached the correct file, kindly please help add alert on this indicator when the cloud starts to form.One needs an .mq5 file to modify the code. An .ex5 file doesn't work for that.
I used the free resource on adding alerts on the forum and it is just giving Up alerts only. Dont know what is wrongi tried adding alert with my little knowledge on mql4 but it was hanging. kindly help
It looks like it isn't emptying the buffers properly. I think adding something like ExtMapBuffer5[i+SignalHP]=0 and the same for the ExtMapBuffer6[i+SignalHP] at the beginning of the cycle could help.I used the free resource on adding alerts on the forum and it is just giving Up alerts only. Dont know what is wrong
I recommend following this tutorial:Can anyone add alert to this indicator whenever a new buy sell arrow is generated ... sound alert and pop up alerts
i am very new to mql coding ... can you make me the alertsI recommend following this tutorial:
https://www.earnforex.com/guides/how-to-add-alerts-to-metatrader-indicators/
Hi Enivid,I have written a tutorial on how to add alerts (including email alerts) to indicators for people who do not know how to code:
https://www.earnforex.com/blog/how-to-add-alerts-to-metatrader-indicators/
Perhaps, you could try implement this yourself.
You need to check the buffer values againstHi Enivid,
I really like your helpful tutorial on how to add alerts. However, somehow I don't manage to implement the signal alert correctly into the free Gap Finder MT5 to give a notification each time when a new gap occur symbolized by an arrow , up or down (indicator attached). I went through the points, figured out the indicator buffers for the arrows, the added the input part, then added the alert conditions and changed the two paramenters because the buffer arrays are set as series. I got no error from compiling the code. But unfortunately I get alert notification every time when a new candel starts and not when the next arrow is shown for a gap. Can you please guide me to find the error and correct the signal alert to provide notifications for each new gap that is comming up?
Best wishes,
Dan
EMPTY_VALUE
instead of zero. The indicator uses EMPTY_VALUE
for candles without arrows.Hi Enivid, thank you for your great help and guidance, it works! This way I was able to figure out the last part myself, how exactly and where I need to add EMPTY_VALUE - which feels better than just geting the complete solutionYou need to check the buffer values againstEMPTY_VALUE
instead of zero. The indicator usesEMPTY_VALUE
for candles without arrows.