Performing a moving-average calculation

The moving average of a stock can be calculated using the pandas statistical package that is a part of pandas and is in the pd.stats namespace, specifically, the .rolling_mean() function.

The moving average will give you a sense of the performance of a stock over a given time period by eliminating "noise" in the performance of the stock. The larger the moving window, the smoother and less random the graph will be—at the expense of accuracy.

To demonstrate, the following calculates the moving average for MSFT on 30 and 90 day periods using the daily close. The difference in the reduction of noise can be easily determined from the visual:

In [27]:
   # extract just MSFT close
 msft_close = close_px[['MSFT']]['MSFT'] ...

Get Learning pandas now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.