Difference between revisions of "UpTicks"

From MultiCharts
Jump to navigation Jump to search
Line 6: Line 6:
 
With '''build volume on''' is set to '''tick count:'''
 
With '''build volume on''' is set to '''tick count:'''
  
  - the value of 1 will be returned for 1-tick charts
+
- the value of 1 will be returned for 1-tick charts
  - the total number of Up ticks in the current bar will be returned for multi-tick, volume, and time-based charts  
+
 
 +
- the total number of Up ticks in the current bar will be returned for multi-tick, volume, and time-based charts  
  
 
With '''build volume on''' is set to '''trade volume:'''
 
With '''build volume on''' is set to '''trade volume:'''
  
  - the Up volume of the current tick will be returned for 1-tick charts
+
- the Up volume of the current tick will be returned for 1-tick charts
  - the total Up volume of the current bar will be returned for multi-tick, volume, and time-based charts
+
 
 +
- the total Up volume of the current bar will be returned for multi-tick, volume, and time-based charts
  
 
Please note that most data feeds provide only a limited history of tick and volume data; storing real-time feed data will ensure the availability of historical tick and volume data.   
 
Please note that most data feeds provide only a limited history of tick and volume data; storing real-time feed data will ensure the availability of historical tick and volume data.   

Revision as of 13:29, 26 January 2012

Returns the total number of Up ticks for the current bar if Build Volume On is set to Tick Count. Returns the total Up volume for the current bar if Build Volume On is set to Trade Volume.

An up tick is a tick with the price higher then the preceding tick, and up volume is the volume traded on up ticks.

With build volume on is set to tick count:

- the value of 1 will be returned for 1-tick charts

- the total number of Up ticks in the current bar will be returned for multi-tick, volume, and time-based charts

With build volume on is set to trade volume:

- the Up volume of the current tick will be returned for 1-tick charts

- the total Up volume of the current bar will be returned for multi-tick, volume, and time-based charts

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

Usage

UpTicks

Example

Plot the number of Up ticks in the current bar (Build Volume On is set to Tick Count):

Plot1(UpTicks,"Up Ticks");


Plot the Up volume of the current bar (Build Volume On is set to Trade Volume):

Plot1(UpTicks,"Up Volume");