Best EA/indicator for audio alerts?

I have an EA running on a remote VPS. To monitor it at home I run a terminal on my desktop logged into the same account.

I need an EA/indicator that will play an audible alert whenever it detects a new order or trade AND when a trade is closed or hits the SL.

I found one EA that did the trick but the only problem was it would keep chiming and periodically playing the alert until I hit “OK” on the alert box which is annoying as hell when you are trying to sleep and your EA averages 8 trades a day. There was no way to make it play an alert just a single time.

MT4? If so, download metatrader on your phone and and allow mt4 to send notification to your phone. In the app you will find the ID that you enter into MT4 so that it knows where to send the notification to. In your EA you can use:

SendNotification(“this is an notification”);

This will sound an alarm on your phone. Make sure that it will only give one notifcation, as each tick can cause a similar signal and over a 1000 notification may be send to your phone, but that is also the case for an alert. An alert also gives a sound, but you have to be logged in to the VPS to hear that one.

I normally do:

if(Notify == 0 ) {SendNotification(“text here”); Notify = 1;

if( minute != Minute()) Notify = 0;

You need to incorporate this in your EA, but I hope it gives you some direction.

i dont know how to actually code :(. coding was outsourced.