Please teach me About EA

 

How can I execute the Ordersend command without a tick?

I want to open the new order without no tick signal Compulsorily

 
namiko_ara:
Can EA be started excluding a usual action?

I want to move
int start() {
}
by actions other than MT4.

Your question isn't clear... Maybe u can clarify.

 
//--------------------------------------------------------------------
start()                    // Special function start()
   {
   while(!IsStopped())     // Until user.. 
      {                    // ..stops execution of the program
      RefreshRates();      // Data renewal
      //......................The main code of the program is specified here
      Sleep(5);            // Short pause
      }
   return;                 // Control is returned to the terminal
   }
//--------------------------------------------------------------------
https://book.mql4.com/special/index
 
namiko_ara:

How can I execute the Ordersend command without a tick?

I want to open the new order without no tick signal Compulsorily


Should also run start() from init() like so:

int init()
   {
   start();
   return;
   }