Difference between revisions of "Commentarycl"

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 by the Expert Commentary pointer. '''Usage''' <s...")
 
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 by the Expert Commentary pointer.
+
This reserved word sends the expression (or list of expressions) to the [[:Category:Expert_Commentary|Expert Commentary]] window for whatever bar is selected by the Expert Commentary pointer.
  
'''Usage'''
+
== Usage ==
 
<syntaxhighlight>
 
<syntaxhighlight>
 
CommentaryCL("My Expression") ;
 
CommentaryCL("My Expression") ;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
''My Expression'' is a single or a comma-separated list of numeric, text string, or true/false expressions that are sent to the Expert Commentary window.
+
Where:
 +
:'''My Expression''' is a single or a comma-separated list of numeric, text string, or true/false expressions that are sent to the Expert Commentary window.
  
'''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 next 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 next line.
 
 
<syntaxhighlight>
 
<syntaxhighlight>
 
CommentaryCL("This is one line of commentary") ;
 
CommentaryCL("This is one line of commentary") ;

Latest revision as of 05:45, 3 April 2013

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

Usage

CommentaryCL("My Expression") ;

Where:

My Expression is a single or a comma-separated list of numeric, text string, or true/false expressions that are sent to the Expert Commentary window.

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 next line.

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