Moving Average.mq4

 

Is there some place I can find the basic information on the Moving Average EA that comes with MT4? I've done a search for it and have turned up everything including a page of its code but I've found nothing that simply provides a basic description of the EA.

 
Just look at the code
//---- buy conditions
   if(Open[1]<ma && Close[1]>ma)
     {
      res=OrderSend(Symbol(),OP_BUY,Lots...
Opens when a bar crosses the MA
 
WHRoeder:
Just look at the code Opens when a bar crosses the MA


With a little more searching, I've finally found it.

https://www.mql5.com/en/code/7927

Reason: