Push Notification for EA?

 

Hi, Need help for some basic programming here.

Im currently using an EA. I would like to be notified through Push Notification in MT4 once the EA open or close a trade. Any idea how to do this? It doesnt have to be incorporated into the EA, as long its workable.
 
It can send an email
 

Here https://www.mql5.com/en/forum/139676

It says the command right there.

 
Thanks ubzen, but I st
ubzen:

Here https://www.mql5.com/en/forum/139676

It says the command right there.

Thanks ubzen, but I still dont have any idea on how to implement it. I already google it but still cant find anything, at least that I can understand. I wish if theres a simple script out there. :)
 

You just call this function . . .

bool  SendNotification(
   string  text          // message text
   );
 

hello

i want to know how much myid i can add to push notifications

 
bushiden:
Thanks ubzen, but I stThanks ubzen, but I still dont have any idea on how to implement it. I already google it but still cant find anything, at least that I can understand. I wish if theres a simple script out there. :)


I've searched the whole internets for something similar to what you're looking for. Until finally I gave up and created my own from samples I found.

 Here's what I came out with, which should work for any pairs / EA. Once this INDICATOR is attached to a chart (and assuming you've setup your notification settings), it should send push notifications for either OPENING or CLOSING positions for that pair. Enjoy! 

Reason: