MQL4 Reference
Common functions
GetTickCount
|
The GetTickCount() function retrieves the number of milliseconds that have elapsed since the system was started.
It is limited to the resolution of the system timer.
Sample:
int start=GetTickCount();
// some hard calculations...
Print("Calculation time is ", GetTickCount()-start, " milliseconds.");
|
|
|