Close Navigation
Learn more about IBKR accounts
Stock Market Data And Analysis In Python – Part I

Stock Market Data And Analysis In Python – Part I

Posted July 27, 2021
Ishan Shah
QuantInsti

Excerpt

How to get Stock Market Data in Python?

Yahoo! Finance

One of the first sources from which you can get historical daily price-volume stock market data is Yahoo! Finance. You can use pandas_datareader or yfinance module to get the data and then can download or store in a csv file by using pandas.to_csv method.

If yfinance is not installed on your computer, then run the below line of code from your Jupyter Notebook to install yfinance.

!pip install yfinance

view rawinstall yfinance.py hosted with ❤ by GitHub

Stock Market Data And Analysis In Python

# Import yfinance package
import yfinance as yf

# Set the start and end date
start_date = ‘1990-01-01’
end_date = ‘2021-07-12’

# Set the ticker
ticker = ‘AMZN’

# Get the data
data = yf.download(ticker, start_date, end_date)

# Print 5 rows
data.tail()

amazon_data.py hosted with ❤ by GitHub

To visualize the adjusted close price data, you can use the matplotlib library and plot method as shown below.

# Import matplotlib for plotting
import matplotlib.pyplot as plt
%matplotlib inline

# Plot adjusted close price data
data[‘Adj Close’].plot()
plt.show()

plot_amazn_data.py hosted with ❤ by GitHub

Let us improve the plot by resizing, giving appropriate labels and adding grid lines for better readability.

# Plot the adjusted close price
data[‘Adj Close’].plot(figsize=(10, 7))

# Define the label for the title of the figure
plt.title(“Adjusted Close Price of %s” % ticker, fontsize=16)

# Define the labels for x-axis and y-axis
plt.ylabel(‘Price’, fontsize=14)
plt.xlabel(‘Year’, fontsize=14)

# Plot the grid lines
plt.grid(which=”major”, color=’k’, linestyle=’-.’, linewidth=0.5)

# Show the plot
plt.show()

plot_amzn_data_with_grids.py hosted with ❤ by GitHub

Advantages

  1. Adjusted close price stock market data is available
  2. Most recent stock market data is available
  3. Doesn’t require API key to fetch the stock market data

See https://blog.quantinsti.com/stock-market-data-analysis-python/ for additional insight on this topic and for a tutorial from Nitesh Khandelwal, Co-Founder and CEO, QuantInsti, that answers questions related to getting Data for Algo Trading.

Past performance is not indicative of future results.

Any stock, options or futures symbols displayed are for illustrative purposes only and are not intended to portray recommendations.

Disclosure: Interactive Brokers

Information posted on IBKR Campus that is provided by third-parties does NOT constitute a recommendation that you should contract for the services of that third party. Third-party participants who contribute to IBKR Campus are independent of Interactive Brokers and Interactive Brokers does not make any representations or warranties concerning the services offered, their past or future performance, or the accuracy of the information provided by the third party. Past performance is no guarantee of future results.

This material is from QuantInsti and is being posted with its permission. The views expressed in this material are solely those of the author and/or QuantInsti and Interactive Brokers is not endorsing or recommending any investment or trading discussed in the material. This material is not and should not be construed as an offer to buy or sell any security. It should not be construed as research or investment advice or a recommendation to buy, sell or hold any security or commodity. This material does not and is not intended to take into account the particular financial conditions, investment objectives or requirements of individual customers. Before acting on this material, you should consider whether it is suitable for your particular circumstances and, as necessary, seek professional advice.

IBKR Campus Newsletters

This website uses cookies to collect usage information in order to offer a better browsing experience. By browsing this site or by clicking on the "ACCEPT COOKIES" button you accept our Cookie Policy.