Making EA take trades after certain minutes.

 
Can it be possible for my EA to take trades after every minute on Mql5? If there is a way can you please help
 
kevinndou15:
Can it be possible for my EA to take trades after every minute on Mql5? If there is a way can you please help

Of course there is a way, many coders will be happy to code it for you: https://www.mql5.com/en/job

 
static datetime PrevBars=0;
datetime time_0=iTime(m_symbol.Name(),Period(),0);
   
   if(time_0!=PrevBars)
      {
       //code comes here
      }
   PrevBars=time_0;

Add that to your void onTick().

Reason: