Amps

Tuesday, February 23, 2016

Moving Average Activate Open and Close order Function MQL4

Moving Average Activate Open and Close order Function MQL4

Basic Function Moving Average Multi order EA Example MQL4

bool IsTradeAllowed
string symbol
datetime Time to check status

Full code on this part OnTick

//+------------------------------------------------------------------+
//| OnTick function                                                  |
//+------------------------------------------------------------------+
void OnTick()
  {
//--- check for history and trading
   if(Bars<100 || IsTradeAllowed()==false)
      return;
//--- calculate open orders by current symbol
   if(CalculateCurrentOrders(Symbol())==0) CheckForOpen();
   else                                    CheckForClose();
//---
  }
//+------------------------------------------------------------------+

Finish Moving Average EA coding MQL4

No comments:

Post a Comment