Making EA From push alert

 
Does someone know how I can make from my indicator that gives a push alert an automated EA which opens trades? 
 
yadr:
Does someone know how I can make from my indicator that gives a push alert an automated EA which opens trades? 
Yes possible you need to code the EA based on your indicator.
 

Use the iCustom function. it is in the documentation https://www.mql5.com/en/docs/indicators/icustom

Go through the documentation, write some code and see how it works. It really is pretty easy to do.

Documentation on MQL5: Technical Indicators / iCustom
Documentation on MQL5: Technical Indicators / iCustom
  • www.mql5.com
[in]  The name of the custom indicator, with path relative to the root directory of indicators (MQL5/Indicators/). If an indicator is located in a subdirectory, for example, in MQL5/Indicators/ [in] input-parameters of a custom indicator, separated by commas. Type and order of parameters must match. If there is no parameters specified, then...
Reason: