Les pandas prédisent le mouvement moyen
df['pandas_SMA_3'] = df.iloc[:,1].rolling(window=3).mean()
Hambo
df['pandas_SMA_3'] = df.iloc[:,1].rolling(window=3).mean()