A loop is a basic concept in any programming language. It is simply a question repeatedly asked until an answer is provided. Once an answer is satisfied, the program will quit the loop and continue its execution to the next instruction. In programming concepts, the asked question is called an iteration. For instance, the use of loop applied to algorithmic trading can be:

  1. Read historical data and determine which of the prices from X previous days have been the lowest until today.
  2. Read historical Moving Average prices of DMA 20 and DMA 50 indicators from X previous days and determine if a Moving Average crossover happened during that period.
  3. Browsing opened trade positions and verification if a particular trade reached profitability to set stop loss orders to break even for specific trades that meet a particular criterion.
  4. Constantly check opened trade positions and trail stop loss for trades that reached a certain threshold.
  5. Calculate the total profit and loss from the last X number of closed trades.
Note:

There are many types of loops, MQL4 and MQL5 language has three of them:

  • FOR loop runs instructions for a predefined number of times according to three expressions: initialization, the loop ending criterion, and the computation for each iteration. The value of the expression is evaluated at the beginning of each cycle (Fig.78).
  • WHILE loop repeats instructions until the argument to exit the loop is fulfilled. The answer is evaluated at the beginning of each cycle, and the expression value is defined before the start of a cycle (Fig.79).
  • DO WHILE loop is quite similar to WHILE loop with the exception that the termination argument is evaluated at the end of each cycle (Fig.80).

If the argument or the criteria to end the loop is never met, the loop will be endless unless the program is forced to stop or a loop control statement such as BREAK is initiated inside the loop.

Loops can be nested to appear inside another loop regardless of its type, FOR, WHILE, or DO WHILE.

It is important to remember these peculiarities that differentiate the FOR, WHILE, and DO WHILE statements. The FOR and WHILE loop operator are both checking the loop termination expression at the beginning before each cycle. On the contrary, the DO WHILE statements check the condition at the end of each loop iteration. It means that instructions in each of the cycles are executed before any termination. By default, loops are designed to repeat a set of instructions sequentially until the termination argument is met or the reason for termination is true. However, loop control statements can be used to alter the execution of a cycle by forcing the interruption of the loop or by forcing the loop to go to the next iteration.

FOR loop

Flowchart of a FOR loop
Fig.78 Flowchart of a FOR loop

Unlike WHILE and DO WHILE loop, the FOR loop requires three expressions to define it:

  1. The initialization of an integer is used as a variable for iteration.
  2. The condition for the loop to run.
  3. The expression that defines the iteration, increase, or decrease of the iteration variable.

WHILE loop

Flowchart of a WHILE loop
Fig.79 Flowchart of a WHILE loop

WHILE loop just requires the condition for the loop to run. Instructions are executed after the evaluation of the condition, which is like FOR loop in terms of functionality. The WHILE loop can use any expressions to evaluate the criteria for the loop to run, unlike the FOR statement that requires an integer as a variable for the iteration.

DO WHILE loop

Flowchart of a DO WHILE loop
Fig.80 Flowchart of a DO WHILE loop

DO WHILE loop is different to both FOR and WHILE statement as instructions are executed before evaluation of the condition for the loop to run.

Loop control statements

  • BREAK statement allows immediate termination of the loop and exits the iteration process (Fig.81).
  • Once initiated, the CONTINUE statement bypasses the current cycle and goes to the next iteration (Fig.82).

BREAK control statement

Flowchart of an example of a BREAK control statement within a WHILE loop
Fig.81 Flowchart of an example of a BREAK control statement within a WHILE loop

CONTINUE control statement

Flowchart of an example of a CONTINUE control statement within a WHILE loop
Fig.82 Flowchart of an example of a CONTINUE control statement within a WHILE loop

Case Study:  Which Loop statement is an infinite dead loop?

One of these loops in Fig.83 is a never-ending loop; can you recognize it?

Loop A

example of the loop statement

Loop B

example of the loop statement

Fig.83 Two examples of the loop statement

Answer: Loop A because the loop termination expression cannot be fulfilled, and the variable i can never be equal to five. Therefore, the loop will repeat indefinitely as the condition is:

  • Repeat if variable i is not equal to five.
  • The variable i value is changed to six during the cycle where i is equal to four.
Coding tips:

Always make sure to implement a loop termination expression that can be fulfilled. Otherwise, you might encounter a dead loop. Here are two examples of correctly written FOR loop which are very similar and will in normal circumstances produce the same result, but one of them is a reliable approach and recommended.

(statement 1) FOR loop with termination condition set to variable i equal to N*

  • *The loop will continuously repeat if i is not equal to N
  • Variable i is incremented by 1 for each cycle (i = i + 1) = i++
FOR loop with termination condition set to variable i bigger than N

(Statement 2) FOR loop with termination condition set to variable i bigger than N*

  • *The loop will continuously repeat if i is smaller than N
  • Variable i is incremented by 1 for each cycle (i = i + 1) = i++
Statement 2 is the recommended form to write a reliable loop

Statement 2 is the recommended form to write a reliable loop. The reason is that whatever happens during the loop execution, the termination expression will be fulfilled regardless of the value of the variable i if i is greater than N. On the other hand, the termination expression provided in statement 1 might not be fulfilled as for the loop to end, the variable i must be exactly equal to N. For instance if i is incremented while it is as well updated during the execution, the variable i may never be equal to N which can cause an infinite loop (Fig.83).

Leave a Reply

9  +  1  =