Volume (Reserved Word)

image\trumpet2.gif Disclaimer

Reserved word used to return the Volume of the specified time increment or group of ticks.

Volume

Remarks

V can be used in place of Volume.

  See EasyLanguage Reserved Words Related to Ticks, Volume & Open Interest for more information about the value of Volume based on window type, interval, volume/tick settings, and asset class.

Examples

Volume of 1 bar ago

returns the Volume of the previous bar.

Average(Volume, 10)

returns the Average of the last 10 Volume prices.

Additional Example

To check that the last two bars have Volume prices lower than the previous bar write:

If Volume < Volume[1] and Volume[1] < Volume[2] then
  
Plot1(High, "Falling");