Concatenate

<series> output = <series>.concat(<series> dataA)

This function appends dataA to the calling data series and returns the concatenated series. Before concatenation the function resamples the series with the lesser sampling frequency to the sampling frequency of the series with the greater sampling frequency. It returns one data series and requires one argument.

Example:

var mySeriesC = mySeries.concat(mySeriesB);