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

Parameters

dateTime

Remarks

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

See Also