Volume
Previous Topic  Next Topic 

Definition

Courtesy of www.marketscreen.com

Syntax
VOL()
VOL(IDataSeries inputData)

Returns default value
VOL()[int barsAgo]
VOL(IDataSeries inputData)[int barsAgo]


Return Type
int; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.


Parameters

inputData

Indicator source data (?)


Examples

// Prints the current value VOL
int value = VOL()[0];
Print("The current VOL value is " + value.ToString());


Source Code
You can open up the indicator source code via the NinjaScript Editor.