TA-Lib : Technical Analysis Library

Values.Item Property

Access to the Value object for a given index. The index range from 0 to the Timeseries Length-1

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

[Visual Basic]
Public Default Property ReadOnly Item( _ 
   ByVal index As Integer _ 
) As Value
[C#]
public Value this[
   int index
] { get; }
[C++]
public: __property Value* get_Item(
   int index
);
[JScript]
returnValue = ValuesObject.Item( index );
-or-
returnValue = ValuesObject( 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

Values Class | TA.Lib Namespace