Looping Commands
Looping commands control execution flow of your script. If you wanted to print the word NinjaTrader 100 times, you could either use 100 lines of code or do the same using a looping command in only a few lines of code.
While Loop
Do While Loop
For Loop
Foreach Loop
Break and Continue
You can use the break command to exit a loop at any time. The following example is an infinite loop, but we will break out after the first Print statement.
The continue command will jump ahead to the next iteration of the loop. The following example will never print NinjaTrader, because the continue command sends control back to the top of the loop each time.

