Then

From MultiCharts
Jump to navigation Jump to search

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;