Volume
Definition
A collection of historical bar volume values.
For working with Cryptocurrency instruments which report volume fractional, please use the VOL() indicator series, or store the volume for your script in a custom variable and convert alongside our VOL() indicator (Instrument.MasterInstrument.InstrumentType == InstrumentType.CryptoCurrency ? Core.Globals.ToCryptocurrencyVolume((long)Volume[0]) : Volume[0]).
Property Value
An ISeries\<double\> object. Accessing this property via an index [int barsAgo] returns A double value representing the volume of the referenced bar.
Syntax
Volume
Volume[int barsAgo]

