+1 888 340 6572

Break: Difference between revisions

From MultiCharts
(Created page with "Breaks the loop execution. == Usage == <syntaxhighlight>Break;</syntaxhighlight> == Examples == <syntaxhighlight>For Value1 = 0 to 10 Begin If (Close[Value1] = Open[value...")
 
(No difference)

Latest revision as of 13:01, 24 February 2012

Breaks the loop execution.

Usage

Break;

Examples

For Value1 = 0 to 10 Begin 
If (Close[Value1] = Open[value1]) then Break; 
End; 
If Value1 <= 10 then Print("Open = Close ", Value1:0:0, " bars ago.");