SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3010
RETRIEVING FUNDAMENTAL VALUES OF EQUITY
Haresh Parab1, Raahim Deshmukh2, Atul Handgar3, Prof. Subodh .S. Karve4
1,2,3Student, Computer Engineering Department, Datta Meghe College of Engineering, Mumbai University, Airoli,
Navi Mumbai, Maharashtra, India.
4Professor, Computer Engineering Department, Datta Meghe College of Engineering, Mumbai University, Airoli,
Navi Mumbai, Maharashtra, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The Patronage can guide you to learning
about the fundamental values related to the company
before making an investment. The use of machine learning
model for growth prediction of stocks will also be covered. It
also dwells into how the project can help to find the overall
insights related to fundamental values of equity of a
particular company as well as rise of stock market
prediction.
Key Words: Equity, Fundamental values, Machine
Learning, Stock Market, Growth Prediction
1. INTRODUCTION
The pace of the world is changing rapidly and the
generation is taking more interest in investments. Stock
market for the last hundred and fifty year is used for
wealth generation. Fundamental analysis is significant
from the perspective of the evaluation of stock market
price for long term investment. In the current world
scenario, many people have started investing in the
market and before investing one should have proper
insights. Whenever a Person wants to invest, they should
have a proper piece of information related to company
equity values and it is very hard to seek out the proper
details. By finding out the proper details a particular
person will take their decisions wisely and it will turn out
to their own benefits. Any person tries to seek out
fundamental values of a particular company rather than
going on multiple websites, there should be a one system
which displays the fundamental values of a company. Our
project proposes to gather all the details related to all
companies at one place. The system shows the information
of companies such as their Market Cap, their earnings in
the Financial Year, and many more details. So, the system
will share the real time data of a particular company as per
their search.
2. PROBLEM STATEMENT
The problem occurs when people start thinking about
where to invest and what they should consider about a
company before investing their hard-earned money. Lot of
people just put their money into trending stocks or the
companies they only heard about and when the market
does not react according to their interest they just panic.
Therefore, beginner investors need to gather the key
information related to equity about any company and then
based on that information they should make a decision.
3. LITERATURE REVIEW
With existing systems, if you need information about your
company's core values, you need access to several sources.
H. Various financial websites. As a result, things are getting
busy for our users, and we know that there is a lot of messy
data that can provide false information about stocks and
companies. One of the systems of the past uses machine
learning algorithm classification techniques to perform a
basic analysis of stocks associated with a company.
Fundamental analysis is a way to determine the actual
value or "fair market" value of a stock. Fundamental
analysts look for stocks that are currently trading at prices
above or below their true value. The system proposes an
analysis of the company's stock value and ranks the stock
according to daily trading data updated by the ML
algorithm. However, the problem is that the prediction
uses bias data, which can be tricky. Therefore, the result is
two options, favorable or unfavorable. When searching the
literature, data from the stock market forecasting system
currently in use is taken into account.
Over the last two decades, stock return determination
has become a major research area. In most cases, scientists
sought to establish a direct link between macroeconomic
factors, namely stock returns, but scientists revealed a
record non-linear gradient of returns in the financial stock
market. Had an incredible move. Focus on non-linear
expectations of stock returns. Despite the fact that many
papers have emerged on the non-linear measurable
representation of stock returns, most of them required
displaying a non-linear model before the estimation was
performed. Indeed, to declare financial exchange earnings
confusing, uncertain, confusing, and non-linear. Various
functions are available for predicting parameters. The
mainly contains binary thresholds, linear thresholds,
hyperbolic sigmoids, and brown.
4. IMPLEMENTATION
There will be two sets of functionalities in our web app.
First is the search functionality and another one is growth
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3011
prediction of stocks. The users will put the name of a listed
company as an input in the search box. First of all, there is
a fixed data set in which we have data about the
companies which are listed on the exchanges that data is
extracted from the Yahoo finance website using the API of
yahoo finance. To resolve ambiguity between companies
each company has assigned a ticker symbol as shown
below.
Fig1.1
Tickers
1 "symbol":"AABA","name":"Altaba Inc."
2 "symbol":"ABCB","name":"Ameris Bancorp"
3 "symbol":"FGEN","name":"FibroGen Inc"
4 "symbol":"FIVN","name":"Five9 Inc."
So, whenever a user enters a name of a company the
fundamental data such as market cap, opening and closing
price of the day, dividend and the trading volume of that
particular stock is displayed. The data is extracted from
yahoo website through API as we have said earlier the use
of assigning ticker symbol to each company is used to
extract the particular data or intended data on which user
want to see. The data will be stored on a JSON file using
node js as a backend to process the data. So, this data
ultimately will be displayed to the user on our web
application user interface. We have also created a graph
related to some value as visual presentation will be easier
to understand. The other functionality is the growth
prediction model which we have implemented. Later with
this fundamental data the user will go to our prediction
section and put these details as an input. Actually, it's not
automated because of the use of different programming
standards. We have used the LSTM machine learning
model. This model is mainly used for prediction,
classification and forecasting as well as it gives accuracy
between 80% to 90%. With the help of LSTM machine
learning Model, we are predicting the future value of that
stock or company so that users can make a proper
investment decision.
Fig1.2
The proposed model used for implementation is LSTM
model and it follows particular steps in order to achieve
output
1.Finding dataset: The data-set we have chosen is from
yahoo finance data which has already built-in package
which scrapes data online from yahoo finance website.
Just we have to import yahoo. Stock market prices are
highly unpredictable and volatile. This means that there
are no consistent patterns in the data that allow you to
model stock prices over time near-perfectly.
2.Data exploration: we will be using only high, low, open,
close value and volume for prediction so the extra columns
will be removed as date, adj-close value etc
Fig 1.3
3.Data Visualization:
We have performed a few features extraction here. We
take the dates alone from the overall date variable. Now
we can be using matplotlib to visualize the available data
and see how our price values in data are being displayed.
The green colour was used to visualize the open variable
for the price-date graph, and for the closing variable, we
used red colour.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3012
Fig 1.4
Open value graph
Fig 1.5
Close value graph
4.Data Pre-processing:
We must pre-process this data before applying stock price
using LSTM. Transform the values in our data with help of
the fit_transform function. Min-max scaler is used for
scaling the data so that we can bring all the price values to
a common scale. We then use 80 % or 70% data for
training and the rest 20% or 30% for testing and assign
them to separate variables.
5.Splitting Data into a Training set and a Test set:
Now we can split the training data and test data. The
training data will be the first 6000 data of the company
and 2000 will be test data as contained in yahoo finance
data total of 8000 companies.
6.Training the model:
We have used LSTM model which has four layers
interconnected with it as show in fig 1.2 we have added
units = 50 which represents 50 data points and the unit is
increased per layer by 10 units and dropout of 0.1.
Dropout is applied to the updates to LSTM memory cells,
i.e. it drops out the input/update gate in LSTM. We have
used mean squared method in which past 100 days data
will be removed and from next index mean will be
calculated as so we can also predict of removing 200 days
and changing the data particularly. Then the model will be
trained. Just to save the trained model we have used
keras.h5 method.
So, whenever user puts ticker symbol or values as user
input in text-box the growth prediction analysis will be
shown to the user in the web-application.
4. DESIGN MODELS
1.Workflow Diagram:
Fig 1.6
2. Stock Growth Prediction Model
Fig 1.7
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3013
5. CONCLUSION
In this project we have implemented a web scraping
process to retrieve the equity values of the company as
per user’s requirements and machine learning model for
prediction purposes. We have created a web application
which is user friendly. Our project helps users to find the
required fundamental knowledge about the equity of a
company of their interest and proper insights will be
gained. Based on the collected data and with help of the
growth prediction model of our project users can get a
prediction or return idea of their investments. So, our
project will make a huge impact on investors and it will
make easy for them as it resolves the problem of finding
information and going on multiple websites and it can just
show the information at one place. In the future we can
add a Sentimental analysis and recommendation system
for listing of companies. We can upgrade the API in future,
as it is currently used for only limited searches means per
day only 100 searches are available. We can also use
beautiful-soup of python for web scraping process to
enhance our system more. By upgrading we can make the
search functionality wider. We can improve the system's
usability. We can also provide a new section in our project
which will define each value of equity in understandable
manner for users for the purpose of learning.
REFERENCES
Ariful Islam, Hasib Zaman, Reaz Ahmed, “Automated
Fundamental Analysis for Stock Ranking and Growth
Prediction” December 2009
Ching-Hsue Cheng, You-Shyang Chen “Fundamental
analysis of stock trading systems using classification
techniques”
Sepp Hochreiter, Jurgen Schmidhuber, “Long Short-Term
Memory: Nueral Computation” 1997
Adil Moghar, Mhamed Hamiche, “Stock Market Prediction
using lstm: Recurrent Neural Network” 6-April 2022.
Dr. Sreemoyee Guha Roy, “Equity Research Fundamental
and Technical analysis” 2013

More Related Content

Similar to RETRIEVING FUNDAMENTAL VALUES OF EQUITY

IRJET- Stock Market Prediction using Machine Learning Techniques
IRJET- Stock Market Prediction using Machine Learning TechniquesIRJET- Stock Market Prediction using Machine Learning Techniques
IRJET- Stock Market Prediction using Machine Learning TechniquesIRJET Journal
 
Stock Market Prediction Analysis
Stock Market Prediction AnalysisStock Market Prediction Analysis
Stock Market Prediction AnalysisIRJET Journal
 
Prediction system report and results-Jay Vora
Prediction system report and results-Jay VoraPrediction system report and results-Jay Vora
Prediction system report and results-Jay VoraJay Vora
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESijscai
 
Project report on Share Market application
Project report on Share Market applicationProject report on Share Market application
Project report on Share Market applicationKRISHNA PANDEY
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESijscai
 
IJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfIJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfijscai
 
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUES
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUESSTOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUES
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUESIRJET Journal
 
IRJET - Stock Market Analysis and Prediction
IRJET - Stock Market Analysis and PredictionIRJET - Stock Market Analysis and Prediction
IRJET - Stock Market Analysis and PredictionIRJET Journal
 
Stock Market Prediction
Stock Market PredictionStock Market Prediction
Stock Market PredictionMRIDUL GUPTA
 
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONSTOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONIRJET Journal
 
Finger Gesture Based Rating System
Finger Gesture Based Rating SystemFinger Gesture Based Rating System
Finger Gesture Based Rating SystemIRJET Journal
 
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge EngineeringIRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge EngineeringIRJET Journal
 
Recommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsRecommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsIRJET Journal
 
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...IRJET Journal
 
A Data Warehouse And Business Intelligence Application
A Data Warehouse And Business Intelligence ApplicationA Data Warehouse And Business Intelligence Application
A Data Warehouse And Business Intelligence ApplicationKate Subramanian
 
Review on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsReview on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsIRJET Journal
 
IRJET- Stock Market Prediction using Deep Learning and Sentiment Analysis
IRJET- Stock Market Prediction using Deep Learning and Sentiment AnalysisIRJET- Stock Market Prediction using Deep Learning and Sentiment Analysis
IRJET- Stock Market Prediction using Deep Learning and Sentiment AnalysisIRJET Journal
 
IRJET- Stock Market Prediction using Financial News Articles
IRJET- Stock Market Prediction using Financial News ArticlesIRJET- Stock Market Prediction using Financial News Articles
IRJET- Stock Market Prediction using Financial News ArticlesIRJET Journal
 
Improved stock prediction accuracy using ema technique
Improved stock prediction accuracy using ema techniqueImproved stock prediction accuracy using ema technique
Improved stock prediction accuracy using ema techniquePrashant Singhal
 

Similar to RETRIEVING FUNDAMENTAL VALUES OF EQUITY (20)

IRJET- Stock Market Prediction using Machine Learning Techniques
IRJET- Stock Market Prediction using Machine Learning TechniquesIRJET- Stock Market Prediction using Machine Learning Techniques
IRJET- Stock Market Prediction using Machine Learning Techniques
 
Stock Market Prediction Analysis
Stock Market Prediction AnalysisStock Market Prediction Analysis
Stock Market Prediction Analysis
 
Prediction system report and results-Jay Vora
Prediction system report and results-Jay VoraPrediction system report and results-Jay Vora
Prediction system report and results-Jay Vora
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
 
Project report on Share Market application
Project report on Share Market applicationProject report on Share Market application
Project report on Share Market application
 
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMESINTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
INTELLIGENT ALGORYTHM FOR IMMEDIATE FINANCIAL STRATEGY FOR SMES
 
IJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdfIJSCAI PAPER UPLOADING.pdf
IJSCAI PAPER UPLOADING.pdf
 
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUES
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUESSTOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUES
STOCK MARKET ANALYZING AND PREDICTION USING MACHINE LEARNING TECHNIQUES
 
IRJET - Stock Market Analysis and Prediction
IRJET - Stock Market Analysis and PredictionIRJET - Stock Market Analysis and Prediction
IRJET - Stock Market Analysis and Prediction
 
Stock Market Prediction
Stock Market PredictionStock Market Prediction
Stock Market Prediction
 
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONSTOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
 
Finger Gesture Based Rating System
Finger Gesture Based Rating SystemFinger Gesture Based Rating System
Finger Gesture Based Rating System
 
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge EngineeringIRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
 
Recommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data StreamsRecommender System- Analyzing products by mining Data Streams
Recommender System- Analyzing products by mining Data Streams
 
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...
IRJET - Forecasting Stock Market Movement Direction using Sentiment Analysis ...
 
A Data Warehouse And Business Intelligence Application
A Data Warehouse And Business Intelligence ApplicationA Data Warehouse And Business Intelligence Application
A Data Warehouse And Business Intelligence Application
 
Review on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsReview on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer Reviews
 
IRJET- Stock Market Prediction using Deep Learning and Sentiment Analysis
IRJET- Stock Market Prediction using Deep Learning and Sentiment AnalysisIRJET- Stock Market Prediction using Deep Learning and Sentiment Analysis
IRJET- Stock Market Prediction using Deep Learning and Sentiment Analysis
 
IRJET- Stock Market Prediction using Financial News Articles
IRJET- Stock Market Prediction using Financial News ArticlesIRJET- Stock Market Prediction using Financial News Articles
IRJET- Stock Market Prediction using Financial News Articles
 
Improved stock prediction accuracy using ema technique
Improved stock prediction accuracy using ema techniqueImproved stock prediction accuracy using ema technique
Improved stock prediction accuracy using ema technique
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 

Recently uploaded (20)

Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 

RETRIEVING FUNDAMENTAL VALUES OF EQUITY

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3010 RETRIEVING FUNDAMENTAL VALUES OF EQUITY Haresh Parab1, Raahim Deshmukh2, Atul Handgar3, Prof. Subodh .S. Karve4 1,2,3Student, Computer Engineering Department, Datta Meghe College of Engineering, Mumbai University, Airoli, Navi Mumbai, Maharashtra, India. 4Professor, Computer Engineering Department, Datta Meghe College of Engineering, Mumbai University, Airoli, Navi Mumbai, Maharashtra, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The Patronage can guide you to learning about the fundamental values related to the company before making an investment. The use of machine learning model for growth prediction of stocks will also be covered. It also dwells into how the project can help to find the overall insights related to fundamental values of equity of a particular company as well as rise of stock market prediction. Key Words: Equity, Fundamental values, Machine Learning, Stock Market, Growth Prediction 1. INTRODUCTION The pace of the world is changing rapidly and the generation is taking more interest in investments. Stock market for the last hundred and fifty year is used for wealth generation. Fundamental analysis is significant from the perspective of the evaluation of stock market price for long term investment. In the current world scenario, many people have started investing in the market and before investing one should have proper insights. Whenever a Person wants to invest, they should have a proper piece of information related to company equity values and it is very hard to seek out the proper details. By finding out the proper details a particular person will take their decisions wisely and it will turn out to their own benefits. Any person tries to seek out fundamental values of a particular company rather than going on multiple websites, there should be a one system which displays the fundamental values of a company. Our project proposes to gather all the details related to all companies at one place. The system shows the information of companies such as their Market Cap, their earnings in the Financial Year, and many more details. So, the system will share the real time data of a particular company as per their search. 2. PROBLEM STATEMENT The problem occurs when people start thinking about where to invest and what they should consider about a company before investing their hard-earned money. Lot of people just put their money into trending stocks or the companies they only heard about and when the market does not react according to their interest they just panic. Therefore, beginner investors need to gather the key information related to equity about any company and then based on that information they should make a decision. 3. LITERATURE REVIEW With existing systems, if you need information about your company's core values, you need access to several sources. H. Various financial websites. As a result, things are getting busy for our users, and we know that there is a lot of messy data that can provide false information about stocks and companies. One of the systems of the past uses machine learning algorithm classification techniques to perform a basic analysis of stocks associated with a company. Fundamental analysis is a way to determine the actual value or "fair market" value of a stock. Fundamental analysts look for stocks that are currently trading at prices above or below their true value. The system proposes an analysis of the company's stock value and ranks the stock according to daily trading data updated by the ML algorithm. However, the problem is that the prediction uses bias data, which can be tricky. Therefore, the result is two options, favorable or unfavorable. When searching the literature, data from the stock market forecasting system currently in use is taken into account. Over the last two decades, stock return determination has become a major research area. In most cases, scientists sought to establish a direct link between macroeconomic factors, namely stock returns, but scientists revealed a record non-linear gradient of returns in the financial stock market. Had an incredible move. Focus on non-linear expectations of stock returns. Despite the fact that many papers have emerged on the non-linear measurable representation of stock returns, most of them required displaying a non-linear model before the estimation was performed. Indeed, to declare financial exchange earnings confusing, uncertain, confusing, and non-linear. Various functions are available for predicting parameters. The mainly contains binary thresholds, linear thresholds, hyperbolic sigmoids, and brown. 4. IMPLEMENTATION There will be two sets of functionalities in our web app. First is the search functionality and another one is growth
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3011 prediction of stocks. The users will put the name of a listed company as an input in the search box. First of all, there is a fixed data set in which we have data about the companies which are listed on the exchanges that data is extracted from the Yahoo finance website using the API of yahoo finance. To resolve ambiguity between companies each company has assigned a ticker symbol as shown below. Fig1.1 Tickers 1 "symbol":"AABA","name":"Altaba Inc." 2 "symbol":"ABCB","name":"Ameris Bancorp" 3 "symbol":"FGEN","name":"FibroGen Inc" 4 "symbol":"FIVN","name":"Five9 Inc." So, whenever a user enters a name of a company the fundamental data such as market cap, opening and closing price of the day, dividend and the trading volume of that particular stock is displayed. The data is extracted from yahoo website through API as we have said earlier the use of assigning ticker symbol to each company is used to extract the particular data or intended data on which user want to see. The data will be stored on a JSON file using node js as a backend to process the data. So, this data ultimately will be displayed to the user on our web application user interface. We have also created a graph related to some value as visual presentation will be easier to understand. The other functionality is the growth prediction model which we have implemented. Later with this fundamental data the user will go to our prediction section and put these details as an input. Actually, it's not automated because of the use of different programming standards. We have used the LSTM machine learning model. This model is mainly used for prediction, classification and forecasting as well as it gives accuracy between 80% to 90%. With the help of LSTM machine learning Model, we are predicting the future value of that stock or company so that users can make a proper investment decision. Fig1.2 The proposed model used for implementation is LSTM model and it follows particular steps in order to achieve output 1.Finding dataset: The data-set we have chosen is from yahoo finance data which has already built-in package which scrapes data online from yahoo finance website. Just we have to import yahoo. Stock market prices are highly unpredictable and volatile. This means that there are no consistent patterns in the data that allow you to model stock prices over time near-perfectly. 2.Data exploration: we will be using only high, low, open, close value and volume for prediction so the extra columns will be removed as date, adj-close value etc Fig 1.3 3.Data Visualization: We have performed a few features extraction here. We take the dates alone from the overall date variable. Now we can be using matplotlib to visualize the available data and see how our price values in data are being displayed. The green colour was used to visualize the open variable for the price-date graph, and for the closing variable, we used red colour.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3012 Fig 1.4 Open value graph Fig 1.5 Close value graph 4.Data Pre-processing: We must pre-process this data before applying stock price using LSTM. Transform the values in our data with help of the fit_transform function. Min-max scaler is used for scaling the data so that we can bring all the price values to a common scale. We then use 80 % or 70% data for training and the rest 20% or 30% for testing and assign them to separate variables. 5.Splitting Data into a Training set and a Test set: Now we can split the training data and test data. The training data will be the first 6000 data of the company and 2000 will be test data as contained in yahoo finance data total of 8000 companies. 6.Training the model: We have used LSTM model which has four layers interconnected with it as show in fig 1.2 we have added units = 50 which represents 50 data points and the unit is increased per layer by 10 units and dropout of 0.1. Dropout is applied to the updates to LSTM memory cells, i.e. it drops out the input/update gate in LSTM. We have used mean squared method in which past 100 days data will be removed and from next index mean will be calculated as so we can also predict of removing 200 days and changing the data particularly. Then the model will be trained. Just to save the trained model we have used keras.h5 method. So, whenever user puts ticker symbol or values as user input in text-box the growth prediction analysis will be shown to the user in the web-application. 4. DESIGN MODELS 1.Workflow Diagram: Fig 1.6 2. Stock Growth Prediction Model Fig 1.7
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3013 5. CONCLUSION In this project we have implemented a web scraping process to retrieve the equity values of the company as per user’s requirements and machine learning model for prediction purposes. We have created a web application which is user friendly. Our project helps users to find the required fundamental knowledge about the equity of a company of their interest and proper insights will be gained. Based on the collected data and with help of the growth prediction model of our project users can get a prediction or return idea of their investments. So, our project will make a huge impact on investors and it will make easy for them as it resolves the problem of finding information and going on multiple websites and it can just show the information at one place. In the future we can add a Sentimental analysis and recommendation system for listing of companies. We can upgrade the API in future, as it is currently used for only limited searches means per day only 100 searches are available. We can also use beautiful-soup of python for web scraping process to enhance our system more. By upgrading we can make the search functionality wider. We can improve the system's usability. We can also provide a new section in our project which will define each value of equity in understandable manner for users for the purpose of learning. REFERENCES Ariful Islam, Hasib Zaman, Reaz Ahmed, “Automated Fundamental Analysis for Stock Ranking and Growth Prediction” December 2009 Ching-Hsue Cheng, You-Shyang Chen “Fundamental analysis of stock trading systems using classification techniques” Sepp Hochreiter, Jurgen Schmidhuber, “Long Short-Term Memory: Nueral Computation” 1997 Adil Moghar, Mhamed Hamiche, “Stock Market Prediction using lstm: Recurrent Neural Network” 6-April 2022. Dr. Sreemoyee Guha Roy, “Equity Research Fundamental and Technical analysis” 2013