Of (Reserved Word)
OF is a Skip Word that performs no function within your code. It is used within a statement only to make the EasyLanguage code more readable.
Remarks
Skip words in EasyLanguage are not necessary, however, they sometimes make it easier to understand the purpose of the code.
Syntax Coloring in the EasyLanguage editor is dark green for all skip words by default.
Example
If the Close of Data2 crosses over 100 Then
Alert;
The word "of" is not necessary and the code functions the same way regardless of its presence.