Difference between revisions of "Variable"

From MultiCharts
Jump to navigation Jump to search
Line 4: Line 4:
 
http://www.buyxanaxonlinepill.com/ purchase xanax - order cheap xanax online
 
http://www.buyxanaxonlinepill.com/ purchase xanax - order cheap xanax online
  
==== Parameters ====
+
http://www.buyxanaxonlinepill.com/ buy xanax online - order xanax no rx
[[IntraBarPersist]] - an optional parameter; specifies that the value of the variable is to be updated on every tick
 
If this parameter is not specified, the value will be updated at the close of each bar.
 
  
[[VariableName]] - an expression, specifying the variable name
 
The name can consist of letters, underscore characters, numbers, and periods.
 
 
The name cannot begin with a number or a period and is not case-sensitive.
 
 
[[InitialValue]] - an expression, specifying the initial value and defining the variable type
 
The value can be a numerical, string, or true/false expression; the type of the expression defines the variable type.
 
 
[[DataN]] - an optional parameter; specifies the Data Number of the data series the variable is to be tied to
 
If this parameter is not specified, the variable will be tied to the default data series.
 
 
 
==== Example ====
 
==== Example ====
 
Declare Avg. as a numerical variable with the initial value of 20:  
 
Declare Avg. as a numerical variable with the initial value of 20:  

Revision as of 12:20, 13 February 2012

Declares one or more names as variables; specifies the initial value, variable type, update basis, and data number for each variable. Variables can be numerical, string, or true/false.

http://www.buyxanaxonlinepill.com/ purchase xanax - order cheap xanax online

http://www.buyxanaxonlinepill.com/ buy xanax online - order xanax no rx

Example

Declare Avg. as a numerical variable with the initial value of 20:

Variable:Avg.(20);

Declare Max as a numerical variable, updated on every tick, with the initial value of 100:

Variable:IntraBarPersist Max(100);

Declare Min_Price as a numerical variable, tied to the series with Data #2, and the initial value equal to the value of Close function:

Variable:Min_Price(Close,Data2);

Declare Overnight as a true/false variable with the initial value of False, and Name as a string variable with the initial value of "Intra-Day":

Variable:Overnight(False),Name("Intra-Day");