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 MustOverride Default ReadOnly Property Item( _ 
   ByVal dateTime As Date,  _ 
   ByVal barData As BarData _ 
) As Double
C#
public abstract double this[
   DateTime dateTime,
   BarData barData
] { get; }
C++
public abstract property double default[DateTime dateTime, BarData barData] abstract  {
    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.

Remarks

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

See Also