Skip to main content

Get Stock data using python and plot a graph for stock analysis using python

 Below is the program to guide you how to get then Stock data using python and plot a graph for stock analysis using python. I took the NSE stock data using python. I used yahoo finance for the same.

First you need to install Yahoo finance using following command:

pip install yahoo-finance

The below is the code:

# Import yfinance package

import yfinance as yf

import matplotlib.pyplot as plt


# Set the start and end date

start_date = '2022-01-01'

end_date = '2023-03-18'


# Set the ticker

ticker = 'HDFCBANK.NS'


# Get the data

data = yf.download(ticker, start_date, end_date)


print(data)

data.tail()



# Plot adjusted close price data

data['Adj Close'].plot()

plt.show()


# 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()


Here is the output for the same:

C:\Users\hp\PycharmProjects\Stock_Prediction\venv\Scripts\python.exe C:\Users\hp\PycharmProjects\Stock_Prediction\venv\NSE.py 

[*********************100%***********************]  1 of 1 completed

                   Open         High  ...    Adj Close    Volume

Date                                  ...                       

2022-01-03  1485.000000  1523.000000  ...  1502.184082   4534592

2022-01-04  1520.000000  1532.900024  ...  1510.981812   4428676

2022-01-05  1536.800049  1572.000000  ...  1546.864502   7166319

2022-01-06  1543.000000  1554.750000  ...  1522.053101   4814465

2022-01-07  1544.000000  1566.750000  ...  1532.729004   5589692

...                 ...          ...  ...          ...       ...

2023-03-13  1587.900024  1603.800049  ...  1568.550049  13221775

2023-03-14  1570.250000  1583.599976  ...  1564.349976  16592806

2023-03-15  1578.000000  1582.900024  ...  1541.900024  18632377

2023-03-16  1539.000000  1559.099976  ...  1551.900024  10876671

2023-03-17  1557.500000  1579.199951  ...  1572.650024  11475438


[301 rows x 6 columns]


Process finished with exit code 0




Comments

Popular posts from this blog

Add, remove, search an item in listview in C#

Below is the C# code which will help you to add, remove and search operations on listview control in C#. Below is the design view of the project: Below is the source code of the project: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Treeview_control_demo {     public partial class Form2 : Form     {         public Form2()         {             InitializeComponent();             listView1.View = View.Details;                   }         private void button1_Click(object sender, EventArgs e)         {             if (textBox1.Text.Trim().Length == 0)...

MySQL practical Tutorials part 9- SQL not operator, SQL Not Like, SQL greater than, SQL less than greater than operator

 ========================================================================= Not Equal SELECT title FROM books WHERE released_year = 2017;   SELECT title FROM books WHERE released_year != 2017;   SELECT title, author_lname FROM books;   SELECT title, author_lname FROM books WHERE author_lname = 'Harris';   SELECT title, author_lname FROM books WHERE author_lname != 'Harris'; ========================================================================= Not Like SELECT title FROM books WHERE title LIKE 'W';   SELECT title FROM books WHERE title LIKE 'W%';   SELECT title FROM books WHERE title LIKE '%W%';   SELECT title FROM books WHERE title LIKE 'W%';   SELECT title FROM books WHERE title NOT LIKE 'W%'; ========================================================================= Greater Than SELECT title, released_year FROM books ORDER BY released_year;   SELECT title, released_year FROM books  WHERE released_year > 2000 ORDER BY release...

MULTIPLEXER , Design & Implement the given 4 variable function using IC74LS153. Verify its Truth-Table

TITLE: MULTIPLEXER   AIM: Design & Implement the given 4 variable function using IC74LS153. Verify its Truth-Table.   LEARNING OBJECTIVE: ·        To learn about IC 74153 and its internal structure. ·        To realize 8:1 MUX and 16:1 MUX using IC 74153.   COMPONENTS REQUIRED: IC 74153, IC 7404, IC 7432, CDS, wires, Power supply. IC PINOUT:            1)     IC 74153 2)      IC 7404:                                              3) IC 7432 THEORY:   ·        Multiplexer is a combinational circuit that is one of the most widely used in digital design. ·        The multiplexer is a data selector which gates one out of several inputs to a sin...