TA-Lib : Technical Analysis Library

Timeseries Addition Operator 

Add the default variable of this time series to a variable.

[Visual Basic]
returnValue = Timeseries.op_Addition(ab)[C#]
public static Timeseries operator +(
   Timeseries a,
   Variable b
)
[C++]
public: static Timeseries* op_Addition(
   Timeseries* a,
   Variable* 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 the added variables. The new variable is named "Result".

See Also

Timeseries Class | TA.Lib Namespace | TimeseriesAddition Operator Overload List