TA-Lib : Technical Analysis Library

Timeseries.SetVar Method (String, Int32[])

Add a variable to this time series with the specified name. The new variable is built from an array of integer.

[Visual Basic]
Public Sub SetVar( _ 
   ByVal variableName As String, _ 
   ByVal data As Integer() _ 
)
[C#]
public void SetVar(
   string variableName,
   int[] data
);
[C++]
public: void SetVar(
   String* variableName,
   int data __gc[]
);
[JScript]
public function SetVar(
   String variableName,
   int[] data
);

Parameters

variableName
is the name of the existing or new variable.
data
is the data.

See Also

Timeseries Class | TA.Lib Namespace | Timeseries.SetVar Overload List