Login Page - Create Account

Support Board


Date/Time: Wed, 17 Sep 2025 00:30:01 +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 ();
     }