> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# GetVolume()

## 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

| Parameter | Description                                     |
| --------- | ----------------------------------------------- |
| index     | An int representing an absolute bar index value |

## Examples

```csharp
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 &lt;= 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);
   }
}
```