+1 888 340 6572

Then

From MultiCharts
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Used in combination with If to form a conditional statement that executes specific instructions if a logical expression is true.

Usage

If E Then I

Where:

E - a true/false expression.
I - conditional instructions.

Notes

  • For more information see If.

Example

If UpTrend is false then sell:

If UpTrend=False Then Sell Next Bar Market;