TA-Lib : Technical Analysis Library

Timeseries.Rename Method (String, String)

Allows to rename a variable. If the new name is already used by another variable, the renamed variable will replace the existing variable.

[Visual Basic]
Public Function Rename( _ 
   ByVal oldName As String, _ 
   ByVal newName As String _ 
) As Variable
[C#]
public Variable Rename(
   string oldName,
   string newName
);
[C++]
public: Variable* Rename(
   String* oldName,
   String* newName
);
[JScript]
public function Rename(
   String oldName,
   String newName
): Variable;

Parameters

oldName
Name of the variable to be renamed.
newName
New name for the variable.

Return Value

A reference on the variable being renamed.

See Also

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