Member-only story

Data Wrangling for Fundamental Stock Analysis

alpha2phi
4 min readSep 5, 2021

Gather data and perform fundamental analysis for a market.

Photo by Chris Liverani on Unsplash

Overview

In this article, let’s use our coding skills to evaluate and choose quality stocks. It is fun to collate stock data for a particular market and perform fundamental analyses.

Getting Stock Market Data

I am going to use the investpy library to gather market information.

Let’s get started!

Getting Stocks for a Market
  • investpy library is a Python library that can be used to scrape market data. In this example, I download a list of US stocks.
Stocks Information
  • As you can see, there are 4,582 stocks, and efforts to manually select the stocks are going to be tremendous. Let’s see what we can do to shortlist some stocks.
  • The dataset is saved to a CSV file for later use.

Choosing the Metrics

There are many metrics that can be used to select good stocks. To make it simple, I am going to use the price-to-earnings (P/E) ratio and dividend history.

Stock Information

Let’s get the financial information for each stock using investpy.

Getting Stock Information
Stocks Financial Information

Now I have basic financial information like EPS, P/E ratio, market capital, revenue, beta, next earnings date, etc for each stock.

Dividend History

Let’s download the dividend history for the stocks.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

alpha2phi
alpha2phi

Written by alpha2phi

Software engineer, Data Science and ML practitioner.

Responses (1)

Write a response

Interesting project! Would you mind explaining a little more on the first screenshot where you set global variables? Not sure what that is for or means?

--