simple moving average towards datascience code example
Example: moving averages python
df['data'].rolling(3).mean()
df['data'].shift(periods=1).rolling(3).mean()
df['data'].rolling(3).mean()
df['data'].shift(periods=1).rolling(3).mean()