Login Page - Create Account

Support Board


Date/Time: Fri, 04 Jul 2025 04:24:35 +0000



Post From: timer event

[2020-05-26 22:02:45]
User517464 - Posts: 7
How does the timer event work in ACSIL?
What is the simplest and best solution to this problem?
Is there any ACSIL function or study?
THX for help!

Example from mql4:
...
// --- create a timer with a 1 second period
   EventSetMillisecondTimer (1000);
   void OnTimer ()
     {
     doSG ();
     }