Difference between revisions of "Commentary"

From MultiCharts
Jump to navigation Jump to search
(Created page with "This reserved word sends the expression (or list of expressions) to the Expert Commentary window for whatever bar is selected on the price chart. '''Usage''' <syntaxhighlight...")
 
m
 
Line 1: Line 1:
This reserved word sends the expression (or list of expressions) to the Expert Commentary window for whatever bar is selected on the price chart.
+
This reserved word sends the expression (or list of expressions) to the [[:Category:Expert_Commentary|Expert Commentary]] window for whatever bar is selected on the price chart.
  
'''Usage'''
+
== Usage ==
 
<syntaxhighlight>
 
<syntaxhighlight>
 
Commentary("My Expression") ;
 
Commentary("My Expression") ;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
''My Expression'' is the numerical, text string or true/false expression that is to be sent to the Expert Commentary window. You can send multiple expressions, commas must separate them.
+
Where:
 
+
:'''My Expression''' is the numerical, text string or true/false expression that is to be sent to the Expert Commentary window. You can send multiple expressions, commas must separate them.
'''Example'''
 
  
 +
== Example ==
 
The following will result in the string "This is one line of commentary" being sent to the commentary window. Any additional commentary sent will be placed on the same line.
 
The following will result in the string "This is one line of commentary" being sent to the commentary window. Any additional commentary sent will be placed on the same line.
 
<syntaxhighlight>
 
<syntaxhighlight>

Latest revision as of 05:44, 3 April 2013

This reserved word sends the expression (or list of expressions) to the Expert Commentary window for whatever bar is selected on the price chart.

Usage

Commentary("My Expression") ;

Where:

My Expression is the numerical, text string or true/false expression that is to be sent to the Expert Commentary window. You can send multiple expressions, commas must separate them.

Example

The following will result in the string "This is one line of commentary" being sent to the commentary window. Any additional commentary sent will be placed on the same line.

Commentary("This is one line of commentary") ;