Difference between revisions of "IntraBarOrderGeneration"

From MultiCharts
Jump to navigation Jump to search
Line 1: Line 1:
 
Toggles intra-bar order generation flag on or off.  
 
Toggles intra-bar order generation flag on or off.  
 
   
 
   
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>[IntrabarOrderGeneration = LogicalValue]</syntaxhighlight>  
 
<syntaxhighlight>[IntrabarOrderGeneration = LogicalValue]</syntaxhighlight>  
  
Where: [[LogicalValue]] - a true/false value; True = Enable; False = Disable
+
Where:  
  
 +
:'''LogicalValue''' - a true/false value: True = Enable; False = Disable.
  
If the attribute is not present in the study's code, intra-bar order generation can be set by the user in the Calculations tab of the Format Signal window.
+
If the attribute is not present in the study's code, intra-bar order generation can be set by the user in the Calculations tab of the Format Signal window:
  
If set to True, "Enable intra-bar order generation and calculation" check box will be checked and grayed out, and the radio buttons will be available.
+
* If set to True, the "Enable intra-bar order generation and calculation" check box will be checked and grayed out, and the radio buttons will be available.
 
+
* If set to False, the "Enable intra-bar order generation and calculation" check box will be unchecked and grayed out, and the radio buttons disabled.  
If set to False, "Enable intra-bar order generation and calculation" check box will be unchecked and grayed out, and the radio buttons disabled.  
 
 
   
 
   
==== Notes ====  
+
== Notes ==
 
Intra-bar order generation is currently supported for single-data series charts only. Intra-bar order generation for multiple-data series charts will be implemented in the next release of the platform.  
 
Intra-bar order generation is currently supported for single-data series charts only. Intra-bar order generation for multiple-data series charts will be implemented in the next release of the platform.  
  
Attributes are applied at the time of compilation and cannot be changed at run-time.  
+
Attributes like the ''IntrabarOrderGeneration'' statement are applied at the time of compilation and cannot be changed at run-time.  
 
   
 
   
==== Example ====
+
== Example ==
 
Enable intra-bar order generation:  
 
Enable intra-bar order generation:  
  
 
<syntaxhighlight>[IntrabarOrderGeneration = True];</syntaxhighlight>  
 
<syntaxhighlight>[IntrabarOrderGeneration = True];</syntaxhighlight>  
 
   
 
   
 
 
 
 
 
[[Category:Attributes]]
 
[[Category:Attributes]]

Revision as of 11:52, 7 February 2012

Toggles intra-bar order generation flag on or off.

Usage

[IntrabarOrderGeneration = LogicalValue]

Where:

LogicalValue - a true/false value: True = Enable; False = Disable.

If the attribute is not present in the study's code, intra-bar order generation can be set by the user in the Calculations tab of the Format Signal window:

  • If set to True, the "Enable intra-bar order generation and calculation" check box will be checked and grayed out, and the radio buttons will be available.
  • If set to False, the "Enable intra-bar order generation and calculation" check box will be unchecked and grayed out, and the radio buttons disabled.

Notes

Intra-bar order generation is currently supported for single-data series charts only. Intra-bar order generation for multiple-data series charts will be implemented in the next release of the platform.

Attributes like the IntrabarOrderGeneration statement are applied at the time of compilation and cannot be changed at run-time.

Example

Enable intra-bar order generation:

[IntrabarOrderGeneration = True];