Notification when order open

 
I want my expert send notifications to me if order open 
 
Ahmed Aboud Ahmed Mohammedalhassan -:
I want my expert send notifications to me if order open 
Enable push notifications 
 

Ahmed Aboud Ahmed Mohammedalhassan -:
I want my expert send notifications to me if order open 


Something like that in the EA code:

SendNotification("New Order!");

 
void OnTradeTransaction(const MqlTradeTransaction& trans, const MqlTradeRequest& request, const MqlTradeResult& result)
{
   if(trans.type == 6 && HistoryDealGetInteger(trans.deal,4)==0) SendNotification("New Order!");
}
Reason: