TA-Lib : Technical Analysis Library

FunctionBase.Var Var to Double Conversion 

Implicit conversion of a variable to a double. The value is the one at the latest index.

[Visual Basic]
returnValue = FunctionBase.Var.op_Implicit(d)[C#]
public static implicit double operator operator (
   Var d
)
[C++]
public: static double op_Implicit(
   Var* d
)
[JScript]
returnValue = d;

[Visual Basic] In Visual Basic, you can use the conversion operators defined by a type, but you cannot define your own.

[JScript] In JScript, you can use the conversion operators defined by a type, but you cannot define your own.

Arguments [Visual Basic, JScript]

d
is the target variable.

Parameters [C#, C++]

d
is the target variable.

Return Value

the value of the variable at the latest index.

See Also

FunctionBase.Var Class | TA.Lib Namespace