stopping ea

 
is it possible to stoop an expert from the mql4 code?
 
m_itai:
is it possible to stoop an expert from the mql4 code?

Not sure what you are trying to achieve but this is a simple way;


int start()
{
   if(some condition)
   {
      return(0);
   }
   else
   {
      // Trade here
   }
   return(0);
}