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 Default ReadOnly Property Item( _ 
   ByVal index As Integer,  _ 
   ByVal barData As BarData _ 
) As Double _
    Implements ISeries.Item
C#
public double this[
   int index,
   BarData barData
] { get; }
C++
public property double default[int index, BarData barData] sealed  {
    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.

Parameters

index
barData

Implements

ISeries.Item

Remarks

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

See Also