TA-Lib : Technical Analysis Library

Variable Division Operator 

Divide each value of the variable by a double.

[Visual Basic]
returnValue = Variable.op_Division(ab)[C#]
public static Timeseries operator /(
   Variable a,
   double b
)
[C++]
public: static Timeseries* op_Division(
   Variable* a,
   double b
)
[JScript]
returnValue = a / b;

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

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

Return Value

A new timeseries with a new variable named "Result".

See Also

Variable Class | TA.Lib Namespace