GetVolume()

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > Bars >

GetVolume()

Previous page Return to chapter overview Next page

Definition

Returns the volume at the selected bar index value.

 

Method Return Value

A long value represents the volume at the desired bar index.

 

Syntax

Bars.GetVolume(int index)

 

Parameters

index

An int representing an absolute bar index value

 

 

Examples

ns

protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
  base.OnRender(chartControl, chartScale);
  // loop through all the rendered bars on the chart
  for(int barIndex = ChartBars.FromIndex; barIndex <= ChartBars.ToIndex; barIndex++)
  {
    // get the volume value at the selected bar index value
    long volumeValue = Bars.GetVolume(barIndex);
    Print("Bar #" + barIndex + " volume value is " + volumeValue);
  }
}