Difference between revisions of "Volume"

From MultiCharts
Jump to navigation Jump to search
m
Line 2: Line 2:
 
For tick and volume-based charts, and time-based charts with resolutions of 24 hours or less:  
 
For tick and volume-based charts, and time-based charts with resolutions of 24 hours or less:  
  
* the volume traded on Up ticks will be returned if '''Build Volume On''' is set to '''Trade Volume'''  
+
* The volume traded on Up ticks will be returned if '''Build Volume On''' is set to '''Trade Volume''',
* the number of Up ticks in the current bar will be returned if '''Build Volume On''' is set to '''Tick Count'''  
+
* The number of Up ticks in the current bar will be returned if '''Build Volume On''' is set to '''Tick Count'''.
  
 
For time-based charts with resolutions of 1 day or more:  
 
For time-based charts with resolutions of 1 day or more:  
  
* the total volume traded will be returned if '''Build Volume On''' is set to '''Trade Volume'''  
+
* The total volume traded will be returned if '''Build Volume On''' is set to '''Trade Volume''',
* the total number of ticks in the current bar will be returned if '''Build Volume On''' is set to '''Tick Count'''  
+
* The total number of ticks in the current bar will be returned if '''Build Volume On''' is set to '''Tick Count'''.
  
 
Please note that most data feeds provide only a limited history of volume and tick data; storing real-time feed data will ensure the availability of historical volume and tick data.  
 
Please note that most data feeds provide only a limited history of volume and tick data; storing real-time feed data will ensure the availability of historical volume and tick data.  
 
   
 
   
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>Volume</syntaxhighlight>  
 
<syntaxhighlight>Volume</syntaxhighlight>  
 
   
 
   
==== Example ====
+
== Examples ==
 
Plot the volume of the current bar:  
 
Plot the volume of the current bar:  
  
<syntaxhighlight>Plot1(Volume,"Volume");</syntaxhighlight>  
+
<syntaxhighlight>Plot1(Volume, "Volume");</syntaxhighlight>  
  
 
Plot the volume of the previous bar:  
 
Plot the volume of the previous bar:  
  
<syntaxhighlight>Plot1(Volume Of 1 Bar Ago,"Previous bar's volume");</syntaxhighlight>  
+
<syntaxhighlight>Plot1(Volume Of 1 Bar Ago, "Previous bar's volume");</syntaxhighlight>  
  
 
Plot the volume of two bars ago:  
 
Plot the volume of two bars ago:  
  
<syntaxhighlight>Plot1(Volume[2],"Volume 2 bars ago");</syntaxhighlight>
+
<syntaxhighlight>Plot1(Volume[2], "Volume 2 bars ago");</syntaxhighlight>
 
 
 
 
  
 
[[Category:Data Information/General]]
 
[[Category:Data Information/General]]

Revision as of 12:16, 19 February 2012

Returns the volume of the current bar. For tick and volume-based charts, and time-based charts with resolutions of 24 hours or less:

  • The volume traded on Up ticks will be returned if Build Volume On is set to Trade Volume,
  • The number of Up ticks in the current bar will be returned if Build Volume On is set to Tick Count.

For time-based charts with resolutions of 1 day or more:

  • The total volume traded will be returned if Build Volume On is set to Trade Volume,
  • The total number of ticks in the current bar will be returned if Build Volume On is set to Tick Count.

Please note that most data feeds provide only a limited history of volume and tick data; storing real-time feed data will ensure the availability of historical volume and tick data.

Usage

Volume

Examples

Plot the volume of the current bar:

Plot1(Volume, "Volume");

Plot the volume of the previous bar:

Plot1(Volume Of 1 Bar Ago, "Previous bar's volume");

Plot the volume of two bars ago:

Plot1(Volume[2], "Volume 2 bars ago");