Volatilidad

PHOTO EMBED

Thu Aug 05 2021 15:56:36 GMT+0000 (Coordinated Universal Time)

Saved by @CleverIT

df['Vol'] = (df['Price'].pct_change() * 100.0).rolling(30).std(ddof=0)

plt.xlabel('Date')

plt.ylabel('Volatility of Returns')

plt.plot(df.index, df['Vol'])

plt.legend(loc='upper center', shadow=True, fontsize='large')
content_copyCOPY