[MT4] Anyone know how to add an alert to my android app when conditions are met on a customer indicator I downloaded?

I’m trying to add alerts to the Cowabunga indicator, but so far it’s not to clear. It currently has the following code, hat I do not quite understand.

SendMail("COWABUNGA Trigger " + Symbol(),text);
PlaySound(“email.wav”);
Print(text);
Send_Mail=false;
}
/if(Trigger>0)
{
Print(TimeDay(Time[i])+"/"+TimeMonth(Time[i])+"/"+TimeYear(Time[i])+" at “+TimeHour(Time[i])+”:"+TimeMinute(Time[i]));
Print(Day()+"/"+Month()+"/"+Year()+" at “+Hour()+”:"+Minute());
Print(Send_Mail);
}
/

Hi, as far I know, MT4 mobile app does not support EA installation on smartphones. Regards Greg

It doesn’t, but there is apparently a way to set up an alert through the desktop version that then sends out the same alert to your android app provided both are open, but my programming skills are basic to say the least and I’m struggling to find instruction on how to achieve this!

Did you try to add push notification? tools-> options -> notification

Yeah this turns them on, but to get a specific alert on a indicator requires coding. I managed to set up a sort of version on tradingview so worked around it, just MT4 is like a Landover whilst TV is like a Hyundai :joy:

check this documents, maybe you will find solution.