Multiply

<series> output = <series>.mult(<constant> Multiplier Value)

<series> output = <series>.mult(<series> Multiplier Series)

This function multiplies the calling series by either Multiplier Value or Multiplier Series.  If Multiplier Series is used, Multiplier Series and the calling series must have the same number of points and they are multiplied point-wise.  If they do not have the same number of points the function call will throw an exception.  This function requires exactly one argument.

Examples:

var mySeries2 = mySeries.mult(5);

var mySeries3 = mySeries.mult(mySeries2);