Answers for "how to calculate moving average in python"

2

python plotting moving average

#Plot the moving average that is the result of the rolling window
r90 = data.rolling(window=90).mean() #<---- Moving Average
data.join(r90.add_suffix(' MA 90')).plot(figsize=(8,8))
plt.show()
Posted by: Guest on September-08-2021
0

moving averages python

# option 1

df['data'].rolling(3).mean()
df['data'].shift(periods=1).rolling(3).mean()

# option 2: compute a 9-day simple moving average with pandas

BTC_USD['SMA_9'] = BTC_USD['Close'].rolling(window=9, min_periods=1).mean()
Posted by: Guest on October-25-2020

Code answers related to "how to calculate moving average in python"

Python Answers by Framework

Browse Popular Code Answers by Language