Gets value with specified index and bar data in the series


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

Syntax

Visual Basic (Declaration)
Public MustOverride Default ReadOnly Property Item( _ 
   ByVal index As Integer,  _ 
   ByVal barData As BarData _ 
) As Double
C#
public abstract double this[
   int index,
   BarData barData
] { get; }
C++
public abstract property double default[int index, BarData barData] abstract  {
    double get(int index, BarData barData);
}
J#
/** property */
public double get_Item(int index, BarData barData);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

Remarks

This method returns null if there is no value with such time stamp in the series

See Also