UpTicks

From MultiCharts
Revision as of 14:31, 18 January 2012 by 194.84.116.138 (talk) (Created page with "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 Volu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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");