Learn practical skills, build real-world projects, and advance your career

Stock Market Analysis

Analysing the Pattern and Trends of top 3 MNCs Stocks in India

This project is meant for stock market analyis using pandas,matplotlib, pandas-datareader, datetime and other python modules with yahoo finance. Live stocks data are fetched from Yahoo finance.

In particular, we are going to study the trend in price and volume of TCS, INFOSYS and WIPRO from 30,05,2020 to 30,04,2021.

We are going to see how to read the data using proper functions and how to analysis the stock price that we have, whether it is opening prices, closing prices, and Volume etc.

We will also see the changes in Volume Traded and how it interpreted in terms of stock prices.

project_name = "stock-market-analysis"

Let's Install the pandas-datareader to get the live data from web and other required python liberaries

  1. pandas-datareader
  2. numpy
  3. matplotlib
  4. scatterplot
  5. pandas
  6. datetime
!pip install pandas-datareader --upgrade --quiet
import pandas_datareader.data as web
import pandas as pd
import numpy as np
import seaborn as sns
import datetime
import matplotlib.pyplot as plt
%matplotlib inline