asking about EA refresh time

Nov 20, 2020 at 10:06
Vistas 500
2 Replies
Miembro desde Sep 26, 2013   posts 16
Nov 20, 2020 at 10:06

Hello
I am developing an expert prototype.
i have an idea but i need help.
I need to know if we can incorporate a command line so that the expert checks the data every second and no longer relies on the tik candles on the different timeframes.
that is possible ?

I am a professional trader but I am new to MQL programming
thank you
USD
Miembro desde Aug 06, 2020   posts 3
Nov 24, 2020 at 05:16

//mql4

//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
void OnInit()
  {
   while(EventSetTimer(1) != true) //set your time interval here
     {
      Sleep(500);
     }
   Print('Init OK');
  }


//+------------------------------------------------------------------+
//| Timer function |
//+------------------------------------------------------------------+
void OnTimer()
  {
    //type your code here
  }
Step by Step
Miembro desde Sep 26, 2013   posts 16
Nov 24, 2020 at 10:18
Thank you soo much dhinosaurus
USD
Conectarse / Inscribirse to comment
You must be connected to Myfxbook in order to leave a comment
*El uso comercial y el spam no serán tolerados y pueden resultar en el cierre de la cuenta.
Consejo: Al publicar una imagen o una URL de YouTube, ésta se integrará automáticamente en su mensaje!
Consejo: Escriba el signo @ para completar automáticamente un nombre de usuario que participa en esta discusión.