Then

From MultiCharts
Revision as of 12:54, 18 January 2012 by 194.84.116.138 (talk) (Created page with "Used in combination with If to form a conditional statement that executes specific instructions if a logical expression is true. For more information see If. ==== ...")
(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.

For more information see If.

Usage

If E Then I

Where: E - a true/false expression

I - conditional instructions

Example

If UpTrend is false then sell:

If UpTrend=False Then Sell Next Bar Market;