Gets bar series by instrument, bar type and bar size


Namespace: OpenQuant.API
Assembly: OpenQuant.API (in OpenQuant.API.dll)

Syntax

Visual Basic (Declaration)
Public Default ReadOnly Property Item( _ 
   ByVal instrument As Instrument,  _ 
   ByVal barType As BarType,  _ 
   ByVal barSize As Long _ 
) As BarSeries
C#
public BarSeries this[
   Instrument instrument,
   BarType barType,
   long barSize
] { get; }
C++
public property BarSeries default[Instrument instrument, BarType barType, __int64 barSize] sealed  {
    BarSeries get(Instrument instrument, BarType barType, __int64 barSize);
}
J#
/** property */
public BarSeries get_Item(Instrument instrument, BarType barType, long barSize);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

instrument
barType
barSize

See Also