MQL4 Reference Language Basics Operators Continue Operator
Continue OperatorThe continue operator passes control to the beginning of the nearest outward loop while, do-while or for operator, the next iteration being called. The purpose of this operator is opposite to that of break operator. Example:
See also Initialization of Variables, Visibility Scope and Lifetime of Variables, Creating and Deleting Objects |