Convolve

<series> output = <series>.conv(<series> data)

This function returns a data series containing the convolution of the calling data series and the data data series.  The two series must have the same sampling frequency in order for the calculation to be performed point-wise.  This function requires exactly one argument.

Example:

var myConvolution = mySeriesA.conv(mySeriesB);