Learn how you can become a Python programmer in just 12 weeks.

    We respect your privacy. Unsubscribe at anytime.

    Calculate the Volatility of Historic Stock Prices with Pandas and Python

    What will we cover in this tutorial?

    We will calculate the volatility of historic stock prices with Python library Pandas.

    Watch lesson

    Step 1: Read Historic Stock Prices with Pandas Datareader

    We will use Pandas Datareader to read some historic stock prices. See this tutorial for details.

    import pandas_datareader as pdr
    import datetime as dt
    ticker = "AAPL"
    start = dt.datetime(2019, 1, 1)
    end = dt.datetime(2020, 12, 31)
    data = pdr.get_data_yahoo(ticker, start, end)
    print(data.head())
    

    Resulting in this.

                     High        Low       Open      Close       Volume  Adj Close
    Date                                                                          
    2019-01-02  39.712502  38.557499  38.722500  39.480000  148158800.0  38.505024
    2019-01-03  36.430000  35.500000  35.994999  35.547501  365248800.0  34.669640
    2019-01-04  37.137501  35.950001  36.132500  37.064999  234428400.0  36.149662
    2019-01-07  37.207500  36.474998  37.174999  36.982498  219111200.0  36.069202
    2019-01-08  37.955002  37.130001  37.389999  37.687500  164101200.0  36.756794
    

    Step 2: Calculate the Volatility of an Asset

    Let’s explore the difference between daily simple returns and daily log returns. Shortly explained, the log returns have the advantage that you can add them together, while this is not the case for simple returns. Therefore the log returns are used in most financial analysis.

    To calculate the daily log returns we need the NumPy library. For the purpose here, we will not explore the depths of NumPy, all we need is to apply the log-function on a full column in our DataFrame (see my other FREE course for more details on NumPy).

    import numpy as np
    data['Log returns'] = np.log(data['Close']/data['Close'].shift())
    

    This creates a column called Log returns with the daily log return of the Close price.

    We need the standard deviation for the volatility of the stock.

    This can be calculated from our Log returns as follows.

    data['Log returns'].std()
    

    The above gives the daily standard deviation. The volatility is defined as the annualized standard deviation. Using the above formula we can calculate it as follows.

    volatility = data['Log returns'].std()*252**.5
    

    Notice that square root is the same as **.5, which is the power of 1/2.

    Step 3: Visualize the Volatility of Historic Stock Prices

    This can be visualized with Matplotlib.

    str_vol = str(round(volatility, 4)*100)

    fig, ax = plt.subplots()
    data[‘Log returns’].hist(ax=ax, bins=50, alpha=0.6, color=’b’)
    ax.set_xlabel(“Log return”)
    ax.set_ylabel(“Freq of log return”)
    ax.set_title(“AAPL volatility: ” + str_vol + “%”)

    Resulting in the following output.

    Want to learn more?

    This is part of the course of Master Technical Analysis with pandas.

    In the next lesson you will learn about Simple and Exponential Moving Average with Python and Pandas.

    12% Investment Solution

    Would you like to get 12% in return of your investments?

    D. A. Carter promises and shows how his simple investment strategy will deliver that in the book The 12% Solution. The book shows how to test this statement by using backtesting.

    Did Carter find a strategy that will consistently beat the market?

    Actually, it is not that hard to use Python to validate his calculations. But we can do better than that. If you want to work smarter than traditional investors then continue to read here.

    Python for Finance: Unlock Financial Freedom and Build Your Dream Life

    Discover the key to financial freedom and secure your dream life with Python for Finance!

    Say goodbye to financial anxiety and embrace a future filled with confidence and success. If you’re tired of struggling to pay bills and longing for a life of leisure, it’s time to take action.

    Imagine breaking free from that dead-end job and opening doors to endless opportunities. With Python for Finance, you can acquire the invaluable skill of financial analysis that will revolutionize your life.

    Make informed investment decisions, unlock the secrets of business financial performance, and maximize your money like never before. Gain the knowledge sought after by companies worldwide and become an indispensable asset in today’s competitive market.

    Don’t let your dreams slip away. Master Python for Finance and pave your way to a profitable and fulfilling career. Start building the future you deserve today!

    Python for Finance a 21 hours course that teaches investing with Python.

    Learn pandas, NumPy, Matplotlib for Financial Analysis & learn how to Automate Value Investing.

    “Excellent course for anyone trying to learn coding and investing.” – Lorenzo B.

    2 thoughts on “Calculate the Volatility of Historic Stock Prices with Pandas and Python”

    1. If you face some errors when reading data from Yahoo, try this:

      !pip install –upgrade pandas-datareader
      !pip install –upgrade pandas

      Helped me a lot.

      Reply

    Leave a Comment