Then

From MultiCharts
Revision as of 11:00, 19 February 2012 by JoshM (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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;