Stock Market Analysis Project

Please Note: You are free to treat this as a full exercise, or just view the solutions video as a code along project. This project is meant to be pretty challenging as it will introduce a few new concepts through some hints!

Welcome to your first capstone project! This project is meant to cap off the first half of the course, which mainly dealt with learning the libraries that we use in this course, the second half of the course will deal a lot more with quantitative trading techniques and platforms.

We'll be analyzing stock data related to a few car companies, from Jan 1 2012 to Jan 1 2017. Keep in mind that this project is mainly just to practice your skills with matplotlib, pandas, and numpy. Don't infer financial trading advice from the analysis we do here!

Part 0: Import

Import the various libraries you will need-you can always just come back up here or import as you go along :)

In [1]:
# Code Here
import numpy as np, pandas as pd
import datetime, pandas_datareader.data as web
import matplotlib.pyplot as plt
%matplotlib inline

Part 1: Getting the Data

Tesla Stock (Ticker: TSLA on the NASDAQ)

*Note! Not everyone will be working on a computer that will give them open access to download the stock information using pandas_datareader (firewalls, admin permissions, etc...). Because of this, the csv file for the Tesla is provided in a data folder inside this folder. It is called Tesla_Stock.csv. Feel free to just use this with read_csv!

Use pandas_datareader to obtain the historical stock information for Tesla from Jan 1, 2012 to Jan 1, 2017.

In [2]:
# Code Here
start = datetime.datetime(2012,1,1)
end = datetime.datetime(2017,1,1)
In [3]:
tesla = web.DataReader("TSLA", 'google', start, end)
tesla.head()
C:\Users\KL\Anaconda3\lib\site-packages\pandas_datareader\google\daily.py:40: UnstableAPIWarning: 
The Google Finance API has not been stable since late 2017. Requests seem
to fail at random. Failure is especially common when bulk downloading.

  warnings.warn(UNSTABLE_WARNING, UnstableAPIWarning)
Out[3]:
Open High Low Close Volume
Date
2012-01-03 28.94 29.50 27.65 28.08 928052
2012-01-04 28.21 28.67 27.50 27.71 630036
2012-01-05 27.76 27.93 26.85 27.12 1005432
2012-01-06 27.20 27.79 26.41 26.89 687081
2012-01-09 27.00 27.49 26.12 27.25 896951

Other Car Companies

Repeat the same steps to grab data for Ford and GM (General Motors),

In [4]:
# Code Here
ford = web.DataReader("f", 'google', start, end)
ford.head()
C:\Users\KL\Anaconda3\lib\site-packages\pandas_datareader\google\daily.py:40: UnstableAPIWarning: 
The Google Finance API has not been stable since late 2017. Requests seem
to fail at random. Failure is especially common when bulk downloading.

  warnings.warn(UNSTABLE_WARNING, UnstableAPIWarning)
Out[4]:
Open High Low Close Volume
Date
2012-01-03 11.00 11.25 10.99 11.13 45709811
2012-01-04 11.15 11.53 11.07 11.30 79725188
2012-01-05 11.33 11.63 11.24 11.59 67877467
2012-01-06 11.74 11.80 11.52 11.71 59840605
2012-01-09 11.83 11.95 11.70 11.80 53981467
In [5]:
# Code Here
gm = web.DataReader("gm", 'google', start, end)
gm.head()
C:\Users\KL\Anaconda3\lib\site-packages\pandas_datareader\google\daily.py:40: UnstableAPIWarning: 
The Google Finance API has not been stable since late 2017. Requests seem
to fail at random. Failure is especially common when bulk downloading.

  warnings.warn(UNSTABLE_WARNING, UnstableAPIWarning)
Out[5]:
Open High Low Close Volume
Date
2012-01-03 20.83 21.18 20.75 21.05 9321420
2012-01-04 21.05 21.37 20.75 21.15 7856752
2012-01-05 21.10 22.29 20.96 22.17 17884040
2012-01-06 22.26 23.03 22.24 22.92 18234608
2012-01-09 23.20 23.43 22.70 22.84 12091714

Part 2: Visualizing the Data

Time to visualize the data.

Follow along and recreate the plots below according to the instructions and explanations.


Recreate this linear plot of all the stocks' Open price ! Hint: For the legend, use label parameter and plt.legend()

In [6]:
# Code Here
plt.figure(figsize=(16,8))
tesla['Open'].plot(label='Tesla')
gm['Open'].plot(label='Gm')
ford['Open'].plot(label='Ford')
plt.legend(loc='upper right')
plt.title('Open Price');

Note that you can use ; to hide the output


Plot the Volume of stock traded each day.

In [7]:
# Code Here
plt.figure(figsize=(16,8))
tesla['Volume'].plot(label='Tesla')
gm['Volume'].plot(label='GM')
ford['Volume'].plot(label='Ford')
plt.legend()
plt.title('Volume Traded');

Interesting, looks like Ford had a really big spike somewhere in late 2013. What was the date of this maximum trading volume for Ford?

Bonus: What happened that day?

In [8]:
# Code Here
ford['Volume'].idxmax()
Out[8]:
Timestamp('2013-12-18 00:00:00')

Note that argmax() is deprecated. To get the actual volume traded, use max()


The Open Price Time Series Visualization makes Tesla look like its always been much more valuable as a company than GM and Ford. But to really understand this we would need to look at the total market cap of the company, not just the stock price. Unfortunately our current data doesn't have that information of total units of stock present. But what we can do as a simple calcualtion to try to represent total money traded would be to multply the Volume column by the Open price. Remember that this still isn't the actual Market Cap, its just a visual representation of the total amount of money being traded around using the time series. (e.g. 100 units of stock at \$10 each versus 100000 units of stock at $1 each)

Create a new column for each dataframe called "Total Traded" which is the Open Price multiplied by the Volume Traded.

In [9]:
# Code Here
tesla['Total Traded']=tesla['Open'] * tesla['Volume']
gm['Total Traded']=gm['Open'] * gm['Volume']
ford['Total Traded']=ford['Open'] * ford['Volume']

Plot this "Total Traded" against the time index.

In [10]:
# Code here
plt.figure(figsize=(16,8))
tesla['Total Traded'].plot(label='Tesla')
gm['Total Traded'].plot(label='GM')
ford['Total Traded'].plot(label='Ford')
plt.legend()
plt.title('Total $ Traded');

Interesting, looks like there was huge amount of money traded for Tesla somewhere in early 2014. What date was that and what happened?

In [11]:
tesla['Total Traded'].idxmax()
Out[11]:
Timestamp('2014-02-25 00:00:00')

Let's practice plotting out some MA (Moving Averages). Plot out the MA50 and MA200 for GM.

In [12]:
# Code here
gm['MA50'] = gm['Open'].rolling(50).mean()
gm['MA200'] = gm['Open'].rolling(200).mean()
gm[['Open', 'MA50', 'MA200']].plot(figsize=(16,8))
Out[12]:
<matplotlib.axes._subplots.AxesSubplot at 0x9c2f850>

Note: Create new columns for MA and auto insert legend when plot() is called


Scatter Matrix Plot

Finally lets see if there is a relationship between these stocks, after all, they are all related to the car industry. We can see this easily through a scatter matrix plot. Import scatter_matrix from pandas.plotting and use it to create a scatter matrix plot of all the stocks' opening price. You may need to rearrange the columns into a new single dataframe. Hints and info can be found here: https://pandas.pydata.org/pandas-docs/stable/visualization.html#scatter-matrix-plot

In [13]:
from pandas.plotting import scatter_matrix

Re-arrange Columns into Single DataFrame

Pass the argument axis=1 (1 for col) to concat() to join the columns.

In [14]:
car_comp = pd.concat([tesla['Open'], gm['Open'], ford['Open']], axis=1)
car_comp.columns = ['Tesla Open', 'GM Open', 'Ford Open']
car_comp.head()
Out[14]:
Tesla Open GM Open Ford Open
Date
2012-01-03 28.94 20.83 11.00
2012-01-04 28.21 21.05 11.15
2012-01-05 27.76 21.10 11.33
2012-01-06 27.20 22.26 11.74
2012-01-09 27.00 23.20 11.83

Plot Scatter Graph

Use scatter_matrix() to plot scatter graph. Pass argument hist_kwd={'bins':50} to increase the bins size of histograms

Notice that there a positive correlation between Ford and GM

In [15]:
scatter_matrix(car_comp, figsize=(8,8), alpha=0.2, hist_kwds={'bins':50});

Bonus: CandleStick Chart

Let's now create a candlestick chart! Watch the video if you get stuck on trying to recreate this visualization, there are quite a few steps involved!Refer to the video to understand how to interpret and read this chart. Hints: https://matplotlib.org/examples/pylab_examples/finance_demo.html

Create a CandleStick chart for Ford in January 2012 (too many dates won't look good for a candlestick chart)

Imports

In [16]:
from matplotlib.finance import candlestick_ohlc
from matplotlib.dates import DateFormatter, date2num, WeekdayLocator, DayLocator, MONDAY

Reset DateTime Index

Use reset_index() to reset the DateTime index to a column

In [17]:
ford_reset = ford.loc['2012-01'].reset_index()
ford_reset
Out[17]:
Date Open High Low Close Volume Total Traded
0 2012-01-03 11.00 11.25 10.99 11.13 45709811 5.028079e+08
1 2012-01-04 11.15 11.53 11.07 11.30 79725188 8.889358e+08
2 2012-01-05 11.33 11.63 11.24 11.59 67877467 7.690517e+08
3 2012-01-06 11.74 11.80 11.52 11.71 59840605 7.025287e+08
4 2012-01-09 11.83 11.95 11.70 11.80 53981467 6.386008e+08
5 2012-01-10 12.00 12.05 11.63 11.80 121750545 1.461007e+09
6 2012-01-11 11.74 12.18 11.65 12.07 63806007 7.490825e+08
7 2012-01-12 12.16 12.18 11.89 12.14 48687666 5.920420e+08
8 2012-01-13 12.01 12.08 11.84 12.04 46388677 5.571280e+08
9 2012-01-17 12.20 12.26 11.96 12.02 44398472 5.416614e+08
10 2012-01-18 12.03 12.37 12.00 12.34 47102604 5.666443e+08
11 2012-01-19 12.48 12.72 12.43 12.61 70894167 8.847592e+08
12 2012-01-20 12.55 12.64 12.45 12.59 43705665 5.485061e+08
13 2012-01-23 12.69 12.84 12.55 12.66 49388566 6.267409e+08
14 2012-01-24 12.56 12.86 12.46 12.82 45768308 5.748499e+08
15 2012-01-25 12.80 12.98 12.70 12.93 54021553 6.914759e+08
16 2012-01-26 13.03 13.05 12.66 12.79 75470624 9.833822e+08
17 2012-01-27 11.96 12.53 11.79 12.21 142155259 1.700177e+09
18 2012-01-30 12.06 12.44 12.00 12.29 57752526 6.964955e+08
19 2012-01-31 12.47 12.51 12.20 12.42 46425332 5.789239e+08
In [18]:
ford_reset.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 20 entries, 0 to 19
Data columns (total 7 columns):
Date            20 non-null datetime64[ns]
Open            20 non-null float64
High            20 non-null float64
Low             20 non-null float64
Close           20 non-null float64
Volume          20 non-null int64
Total Traded    20 non-null float64
dtypes: datetime64[ns](1), float64(5), int64(1)
memory usage: 1.1 KB
In [19]:
ford_reset['date_ax'] = ford_reset['Date'].apply(lambda date: date2num(date))
ford_reset.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 20 entries, 0 to 19
Data columns (total 8 columns):
Date            20 non-null datetime64[ns]
Open            20 non-null float64
High            20 non-null float64
Low             20 non-null float64
Close           20 non-null float64
Volume          20 non-null int64
Total Traded    20 non-null float64
date_ax         20 non-null float64
dtypes: datetime64[ns](1), float64(6), int64(1)
memory usage: 1.3 KB
In [20]:
# Arrays of tuple values
list_of_cols = ['date_ax', 'Open', 'High', 'Low', 'Close']
ford_values = [tuple(vals) for vals in ford_reset[list_of_cols].values]
ford_values
Out[20]:
[(734505.0, 11.0, 11.25, 10.99, 11.13),
 (734506.0, 11.15, 11.53, 11.07, 11.3),
 (734507.0, 11.33, 11.63, 11.24, 11.59),
 (734508.0, 11.74, 11.8, 11.52, 11.71),
 (734511.0, 11.83, 11.95, 11.7, 11.8),
 (734512.0, 12.0, 12.05, 11.63, 11.8),
 (734513.0, 11.74, 12.18, 11.65, 12.07),
 (734514.0, 12.16, 12.18, 11.89, 12.14),
 (734515.0, 12.01, 12.08, 11.84, 12.04),
 (734519.0, 12.2, 12.26, 11.96, 12.02),
 (734520.0, 12.03, 12.37, 12.0, 12.34),
 (734521.0, 12.48, 12.72, 12.43, 12.61),
 (734522.0, 12.55, 12.64, 12.45, 12.59),
 (734525.0, 12.69, 12.84, 12.55, 12.66),
 (734526.0, 12.56, 12.86, 12.46, 12.82),
 (734527.0, 12.8, 12.98, 12.7, 12.93),
 (734528.0, 13.03, 13.05, 12.66, 12.79),
 (734529.0, 11.96, 12.53, 11.79, 12.21),
 (734532.0, 12.06, 12.44, 12.0, 12.29),
 (734533.0, 12.47, 12.51, 12.2, 12.42)]
In [21]:
mondays = WeekdayLocator(MONDAY)        # major ticks on the mondays
alldays = DayLocator()                  # minor ticks on the days
weekFormatter = DateFormatter('%b %d')  # e.g., Jan 12
dayFormatter = DateFormatter('%d')      # e.g., 12

fig, ax = plt.subplots()
fig.subplots_adjust(bottom=0.2)
ax.xaxis.set_major_locator(mondays)
ax.xaxis.set_minor_locator(alldays)
ax.xaxis.set_major_formatter(weekFormatter)

candlestick_ohlc(ax, ford_values, width=0.6, colorup='g', colordown='r');

Part 3: Basic Financial Analysis

Now it is time to focus on a few key financial calculations. This will serve as your transition to the second half of the course. All you need to do is follow along with the instructions, this will mainly be an exercise in converting a mathematical equation or concept into code using python and pandas, something we will do often when working with quantiative data! If you feel very lost in this section, don't worry! Just go to the solutions lecture and treat it as a code-along lecture, use whatever style of learning works best for you!

Let's begin!


Daily Percentage Change

First we will begin by calculating the daily percentage change. Daily percentage change is defined by the following formula:

$ r_t = \frac{p_t}{p_{t-1}} -1$

This defines r_t (return at time t) as equal to the price at time t divided by the price at time t-1 (the previous day) minus 1. Basically this just informs you of your percent gain (or loss) if you bought the stock on day and then sold it the next day. While this isn't necessarily helpful for attempting to predict future values of the stock, its very helpful in analyzing the volatility of the stock. If daily returns have a wide distribution, the stock is more volatile from one day to the next. Let's calculate the percent returns and then plot them with a histogram, and decide which stock is the most stable!

Create a new column for each dataframe called returns. This column will be calculated from the Close price column. There are two ways to do this, either a simple calculation using the .shift() method that follows the formula above, or you can also use pandas' built in pct_change() method.

In [22]:
# Method 1: .shift()
# tesla['returns'] = tesla['Close']/tesla['Close'].shift(1)-1
# tesla.head()
In [23]:
# Method 2: .pct_change()
tesla['returns'] = tesla['Close'].pct_change(1)
tesla.head()
Out[23]:
Open High Low Close Volume Total Traded returns
Date
2012-01-03 28.94 29.50 27.65 28.08 928052 26857824.88 NaN
2012-01-04 28.21 28.67 27.50 27.71 630036 17773315.56 -0.013177
2012-01-05 27.76 27.93 26.85 27.12 1005432 27910792.32 -0.021292
2012-01-06 27.20 27.79 26.41 26.89 687081 18688603.20 -0.008481
2012-01-09 27.00 27.49 26.12 27.25 896951 24217677.00 0.013388
In [24]:
ford['returns'] = ford['Close'].pct_change(1)
ford.head()
Out[24]:
Open High Low Close Volume Total Traded returns
Date
2012-01-03 11.00 11.25 10.99 11.13 45709811 5.028079e+08 NaN
2012-01-04 11.15 11.53 11.07 11.30 79725188 8.889358e+08 0.015274
2012-01-05 11.33 11.63 11.24 11.59 67877467 7.690517e+08 0.025664
2012-01-06 11.74 11.80 11.52 11.71 59840605 7.025287e+08 0.010354
2012-01-09 11.83 11.95 11.70 11.80 53981467 6.386008e+08 0.007686
In [25]:
gm['returns'] = gm['Close'].pct_change(1)
gm.head()
Out[25]:
Open High Low Close Volume Total Traded MA50 MA200 returns
Date
2012-01-03 20.83 21.18 20.75 21.05 9321420 1.941652e+08 NaN NaN NaN
2012-01-04 21.05 21.37 20.75 21.15 7856752 1.653846e+08 NaN NaN 0.004751
2012-01-05 21.10 22.29 20.96 22.17 17884040 3.773532e+08 NaN NaN 0.048227
2012-01-06 22.26 23.03 22.24 22.92 18234608 4.059024e+08 NaN NaN 0.033829
2012-01-09 23.20 23.43 22.70 22.84 12091714 2.805278e+08 NaN NaN -0.003490

Histogram (Individual vs Stacked)

Now plot a histogram of each companies returns. Either do them separately, or stack them on top of each other. Which stock is the most "volatile"? (as judged by the variance in the daily returns we will discuss volatility in a lot more detail in future lectures.)

Ford has over 1,000 data points in 'returns'

In [26]:
len(ford['returns'])
Out[26]:
1258
In [27]:
ford['returns'].hist(bins=100);
In [28]:
gm['returns'].hist(bins=100);
In [29]:
tesla['returns'].hist(bins=100);

Tesla: range in x axis is the widest +0.2 & -0.2

In [30]:
tesla['returns'].hist(bins=100, label='Tesla', figsize=(10,8), alpha=0.5);
gm['returns'].hist(bins=100, label='GM', figsize=(10,8), alpha=0.4);
ford['returns'].hist(bins=100, label='Ford', figsize=(10,8), alpha=0.5);
plt.legend();

We can see that GM and Ford tends to be more stable. Tesla is the most volatile of the three

KDE

Try also plotting a KDE instead of histograms for another view point. Which stock has the widest plot?

In [31]:
tesla['returns'].plot(kind='kde', label='Tesla', figsize=(10,8))
ford['returns'].plot(kind='kde', label='Ford', figsize=(10,8))
gm['returns'].plot(kind='kde', label='GM', figsize=(10,8))
plt.legend();

We can see that Ford is the most stable with the highest peak, followed by GM. Tesla is the least stable

Box Plot

Try also creating some box plots comparing the returns.

When you're using Box plots with pandas, you actually need all the columns in the same DataFrame

In [32]:
# Consolidate columns
box_df = pd.concat([tesla['returns'], ford['returns'], gm['returns']], axis=1)

# Set labels
box_df.columns = ['Tesla Ret', 'Ford Ret', 'GM Ret']

box_df.plot(kind='box', figsize=(8,11));

Comparing Daily Returns between Stocks

Create a scatter matrix plot to see the correlation between each of the stocks daily returns. This helps answer the questions of how related the car companies are. Is Tesla begin treated more as a technology company rather than a car company by the market?

Scatter Matrix Plot

In [33]:
scatter_matrix(box_df, figsize=(8,8), alpha=0.2, hist_kwds={'bins':100});

It looks like Ford and GM do have some sort of possible relationship, let's plot just these two against eachother in scatter plot to view this more closely!

In [34]:
box_df.plot(kind='scatter', x='Ford Ret', y='GM Ret', alpha=0.5, figsize=(8,8));

Cumulative Daily Returns

Great! Now we can see which stock was the most wide ranging in daily returns (you should have realized it was Tesla, our original stock price plot should have also made that obvious).

With daily cumulative returns, the question we are trying to answer is the following, if I invested $1 in the company at the beginning of the time series, how much would is be worth today? This is different than just the stock price at the current day, because it will take into account the daily returns. Keep in mind, our simple calculation here won't take into account stocks that give back a dividend. Let's look at some simple examples:

Lets us say there is a stock 'ABC' that is being actively traded on an exchange. ABC has the following prices corresponding to the dates given

Date                        Price
01/01/2018                   10
01/02/2018                   15
01/03/2018                   20
01/04/2018                   25

Daily Return : Daily return is the profit/loss made by the stock compared to the previous day. (This is what we just calculated above). A value above one indicates profit, similarly a value below one indicates loss. It is also expressed in percentage to convey the information better. (When expressed as percentage, if the value is above 0, the stock had give you profit else loss). So for the above example the daily returns would be

Date                         Daily Return                  %Daily Return
01/01/2018                 10/10 =  1                          -   
01/02/2018                 15/10 =  3/2                       50%
01/03/2018                 20/15 =  4/3                       33%
01/04/2018                 25/20 =  5/4                       20%

Cumulative Return: While daily returns are useful, it doesn't give the investor a immediate insight into the gains he had made till date, especially if the stock is very volatile. Cumulative return is computed relative to the day investment is made. If cumulative return is above one, you are making profits else you are in loss. So for the above example cumulative gains are as follows

Date                       Cumulative Return         %Cumulative Return
01/01/2018                  10/10 =  1                         100 %   
01/02/2018                  15/10 =  3/2                       150 %
01/03/2018                  20/10 =  2                         200 %
01/04/2018                  25/10 =  5/2                       250 %

The formula for a cumulative daily return is:

$ i_i = (1+r_t) * i_{t-1} $

Here we can see we are just multiplying our previous investment at i at t-1 by 1+our percent returns. Pandas makes this very simple to calculate with its cumprod() method. Using something in the following manner:

df[daily_cumulative_return] = ( 1 + df[pct_daily_return] ).cumprod()

Create a cumulative daily return column for each car company's dataframe.

In [35]:
tesla['Cumulative Return'] = (1+tesla['returns']).cumprod()
gm['Cumulative Return'] = (1+gm['returns']).cumprod()
ford['Cumulative Return'] = (1+ford['returns']).cumprod()
tesla.head()
Out[35]:
Open High Low Close Volume Total Traded returns Cumulative Return
Date
2012-01-03 28.94 29.50 27.65 28.08 928052 26857824.88 NaN NaN
2012-01-04 28.21 28.67 27.50 27.71 630036 17773315.56 -0.013177 0.986823
2012-01-05 27.76 27.93 26.85 27.12 1005432 27910792.32 -0.021292 0.965812
2012-01-06 27.20 27.79 26.41 26.89 687081 18688603.20 -0.008481 0.957621
2012-01-09 27.00 27.49 26.12 27.25 896951 24217677.00 0.013388 0.970442
In [36]:
tesla['Cumulative Return'].plot(figsize=(16,8), label='Tesla')
ford['Cumulative Return'].plot(label='Ford')
gm['Cumulative Return'].plot(label='GM')
plt.title('Cumulative Return')
plt.legend();
In [37]:
ford['Cumulative Return'].plot(label='Ford', figsize=(16,8))
gm['Cumulative Return'].plot(label='GM')
plt.title('Cumulative Return')
plt.legend();

Now plot the Cumulative Return columns against the time series index. Which stock showed the highest return for a $1 invested? Which showed the lowest?

Tesla showed the highest return and Ford showed the lowest

That is it for this very basic analysis, this concludes this half of the course, which focuses much more on learning the tools of the trade. The second half of the course is where we really dive into functionality designed for time series, quantitative analysis, algorithmic trading, and much more!