TA-Lib : Technical Analysis Library

Timeseries.SelectInOrder Method 

Allows to express concisely the creation of a new time series built with variables in a specific order. The variables name in the new time series are unspecified. The user can only assume that the variables names are in the proper sorted order.

[Visual Basic]
Public Function SelectInOrder( _ 
   ByVal ParamArray varNameList As String() _ 
) As Timeseries
[C#]
public Timeseries SelectInOrder(
   params string[] varNameList
);
[C++]
public: Timeseries* SelectInOrder(
   String* varNameList __gc[]
);
[JScript]
public function SelectInOrder(
   String[] varNameList
): Timeseries;

Parameters

varNameList
is the list of variable's name.

Return Value

The new timeseries.

See Also

Timeseries Class | TA.Lib Namespace