CurrentTime (Reserved Word)
This reserved word returns a numeric value representing the EasyLanguage time (HHMM format) corresponding to the time of your computer.
Examples
CurrentTime returns a value of 1718 at 5:18 pm.
CurrentTime returns a value of 0930 at 9:30 am.
Additional Example
To have a trading strategy, analysis technique, or function perform its calculations only if it is before 2:00pm, you can write:
If CurrentTime < 1400 Then Begin
{ EasyLanguage instruction(s) }
End;