TA-Lib : Technical Analysis Library

Timestamps.Item Property

Access to the DateTime for the parent timeseries. The index range from 0 to the Timeseries Length-1

[C#] In C#, this property is the indexer for the Timestamps class.

[Visual Basic]
Public Default Property ReadOnly Item( _ 
   ByVal index As Integer _ 
) As Date
[C#]
public DateTime this[
   int index
] { get; }
[C++]
public: __property DateTime get_Item(
   int index
);
[JScript]
returnValue = TimestampsObject.Item( index );
-or-
returnValue = TimestampsObject( index );

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

See Also

Timestamps Class | TA.Lib Namespace