Returns a function that shifts all values of a single time series by the specified delta.
For a source time series with points (timestamp, value), upon shifting by delta,
the resulting value-shifted time series will have points (timestamp, value + delta).
Parameters:delta (int) – The amount by which to shift the value of each point.
Returns:
A function that accepts a single time series as input and returns the value-shifted time series.