Gets value with specified time stamp 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 dateTime As Date,  _ 
   ByVal barData As BarData _ 
) As Double _
    Implements ISeries.Item
C#
public double this[
   DateTime dateTime,
   BarData barData
] { get; }
C++
public property double default[DateTime dateTime, BarData barData] sealed  {
    double get(DateTime dateTime, BarData barData);
}
J#
/** property */
public double get_Item(DateTime dateTime, BarData barData);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

dateTime
barData

Implements

ISeries.Item

Remarks

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

See Also