Introduction
Nowadays, whoever is dealing with finance data, specifically with stock market needs very good understanding of data. Obviously, understanding of data completely depends on how the data is displayed or shown to someone. When we are putting money in the stock market, it is always advisable to first understand the pattern or behavior of the stock which you are going to buy or sell.
In this article, I'm neither going to cover the
internals of finance nor am I going to discuss about what all parameters one needs
to analyze or understand. The idea behind this article is, how one can use
certain financial parameters to get the gist of market trend.
Getting Started
Let's consider a scenario, in which you would like to know, what
is the opening price of Microsoft stock in the last few weeks. So that, by
looking at the price, you can derive some conclusions. To perform this entire
exercise, we need a few things:
- Stock symbol: In our
case, it is MSFT.
- Programming language and
library:
In our case, it is Python, Yahoo Finance and Pandas.
- Plotting library: In our
case, it is MatplotLib.
- IDE: In this
case, I'm using Jupyter Notebook. You can use other IDE of your choice.
Using the Code
First of all, we need to import all the required packages:
Then we need to get data for MSFT stock for the desired duration. Here, I'm interested in data for the duration 2021-10-01 to 2022-02-14.
To have a gist of the downloaded data, you can fetch initial few rows and see. To view initial five rows, you can do the following:
Executing the above statement will provide you with the output as shown below:
Now we have the data with us, it is completely on us that what all columns we consider for analysis. For this article, let's go with the opening price of stock, which is represented by Open column.
Let's take values from Open column in a variable as shown:
The above line will create a copy of all the data available under Open column.
Next comes plotting the data of Open column. Using matplotlib, we can plot various types of charts and for this example, I'm taking seaborn. Once chart style is decided, we need to set the required height, width and font size as per our visualization needs. Here is the code for that:
The above lines will give you the visualization as shown below:
By looking at such visualization, you can easily say, which day
stock opened very high and which day it was low.
Complete Code
Here is the complete code as explained above:
Hope you enjoyed reading this article. This article plots only one stock, but you can extend it to go for more.
Comments
Post a Comment