Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms

Size: px
Start display at page:

Download "Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms"

Transcription

1 Volume 119 No , ISSN: (on-line version) url: ijpam.eu Stock Market Predictor and Analyser using Sentimental Analysis and Machine Learning Algorithms 1 K.M. Umamaheswari, 2 Ayush Sharma and 3 Shivam Khandelwal 1 Department of Computer Science and Engineering, SRM Insititute of Science and Technology, Chennai, India. umamaheswari.km@ktr.srmuniv.ac.in 2 Department of Computer Science and Engineering, SRM Insititute of Science and Technology, Chennai, India. ayush_rajesh@srmuniv.edu.in 3 Department of Computer Science and Engineering, SRM Insititute of Science and Technology, Chennai, India. shivam_khandelwal@srmuniv.edu.in Abstract Stock market plays a very important role in fast economic growth of the developing country like India. From the last twenty years, the application of Internet based technologies had brought a significant impact on the Indian stock market. Use of the Internet has eliminated the barriers of brokers and geographical location because now investors can buy and sell their shares by accessing the stock market status from anywhere at any time. Before investing money, it is very important for investors to predict the stock market. In today s digital world Internet based technologies such as Cloud Computing, Big Data analytics, and Sentiment analysis have changed the way we do business. Sentiment analysis or opinion mining makes use of text mining, natural 15395

2 language processing (NLP), in order to identify and extract the subjective content by analyzing user s opinion. In this project, with the use of Sentimental Analysis and Machine learning algorithms, we make it easy for the stock market investors to invest their money and buy shares if they think investing in that could result into they making profit. We provide the user with two options to predict the same using either sentimental analysis or through machine learning algorithms Keywords: Sentimental Analysis, Machine Learning, Stock Market

3 1. Introduction The websites which have record of all the news of a particular company that User wants to invest his money in can be used as a database for sentimental analysis. Sentiment analysis is used to extract such opinion and remarks of users by classifying them as positive, negative and natural sentiment 2. Although there are a number of definitions about sentiment analysis in the literature, but in simple terms sentiment analysis is a technique used to extract intelligent information based on the person s opinion from raw data available on the internet. In this definition, the term opinion means a person s perspective about an object or issue. There are some challenges related to sentiment analysis, the first challenge is a word that is used to express an opinion; it can be positive as well as negative depending upon the type of sentiment 14. For example: if a word large is used for size of mobile device, then it is considered as negative, whereas if the statement contains large word for the height of a person then it is considered as a positive statement. The second challenge is related to the opinion holder as opinion holder is always changing its statement, according to his state of mind, it is very difficult to understand such type of statement by the machine. For example: I like the picture quality, but the battery life is poor. This statement is a combination of both positive and negative statements. Also, there is a problem when the statement is too short to understand even by human being. Indian stock market has gained the interest of investors investing in two main stock market named as Bombay Stock Exchange (BSE) and National Stock Exchange (NSE). There is high risk involved for investors because of more complexity of the stock market. The Sensex and NIFTY are two such prominent market indices that function within the Indian stock market. These two market indexes represent the stocks for BSE (Bombay Stock Exchange) and NSE (National Stock Exchange) respectively. Intelligent data analysis tools produce a data base to search for hidden information that may be missed due to beyond expert s predictions. Extraction which was previously unknown, implicit and potentially useful information from data in databases, is an effective way of data mining. It is commonly known as knowledge discovery in databases (KDD). Although data mining and knowledge discovery in databases (or KDD) both are used as similar often, Data mining is actually part of knowledge discovery. Data mining techniques play important role in stock market which can search uncover and hidden patterns and increasing the certain level of accuracy, where traditional and statistical methods 15397

4 2. Live Stock Market Values Python script is run in the backend where user can input the details of the company in the UI created, for which he needs the live stock market price. The user needs to input the name of the company, the keyword of that company And whether we want NSE or BSE. The result is displayed in the interface. The python script scrapes out the relevant information from a particular Financing website and the this is displayed to the user in the User Interface. 3. Role of Sentimental Analysis In determining how a particular company will do in the upcoming weeks would depend not only on the previous trends but on the current finance news also. For example:- The CEO of a XYZ company has resigned from the post due to some internal affair within the company. This would definitely effect the stock market prices of that company in the near future. This is where sentimental analysis comes into play. Let us continue this further for a given company XYZ. So we want to do sentimental analysis on the recent news article of this company. We use money control.com as the financial website for scraping out the news

5 The user needs to input the name of the enterprise and the python script takes the input and displays the universal link where all the news database is stored for XYZ. All the html links for the news articles for XYZ are stored in the list. After this we remove all the duplicate links for avoiding any recurrence of them. BeautifulSoup is a python library which is used for parsing the scraped data which helps in extracting the data from HTML And hence it is useful in web scraping. It makes the useful data easily distinguishable from the data which is of no use. With this we have all the scraped news on which sentimental analysis is to be done. Textblob is a blobber, which is a python library which is used for sentimental analysis. This is used for giving positive and negative scores for a sentence. This contains crores of words which are used for the score evaluation. Pattern Analyser is used in this textblob library which has a sentimental analysis approach. Polarity and Subjectivity are the two major outcomes or result of the sentimental analysis. Polarity of the given text can be determined at different levels, whether the expressed opinion, a sentence or an aspect is positive, negative or neutral. For achieving polarity classification, one can see the whole process as a pipeline including different stages that can lead to the accuracy of ending results. Polarity is closely related to emoticons which express the user s opinion. Subjectivity can be looked as the stage where a sentence is regarded as either objective or subjective. These sentences express user s beliefs, views or feelings. These do not have any emoticons attached to it. They do not express positivity or negativity of the sentence. For example:- I think he went to school is neither expresses a positive nor negative statement. So textblob is responsible to give Polarity and Subjectivity to the scraped news statement and this hence completes the Sentimental analysis part of the project. 4. Role of Machine Learning Machine learning is a method used to devise complex models and algorithms that lend themselves to prediction which is also known as predictive analysis. It 15399

6 involves with the study and making of the algorithms which is then used to make predictions of future from the available data. Pandas which stands for Python Data Analysis Library is a python library which is used for data manipulation and analysis. This is used to convert data set obtained from the below mentioned Yahoo API into data frames as the model used for learning takes input only as data frames. Yahoo finance api is part of Yahoo family network which is used for obtaining financial news, data and commentary including stock quotes, press releases, financial reports, and original content. We use this obtains all the records of XYZ from year 1986 till the present date which include all the stock prices (opening, closing, average). This data is easily available on Yahoo finance API. Prophet model is basically a library to build forecasting models for time series data, but instead of using the traditional way of building the model such as using ARIMA, etc., it is fitting additive regression models or known as curve fitting. They have implemented the core part of the procedure in Stan s probabilistic programming language. Prophet has been a key piece to improving Facebook s ability to create a large number of trustworthy forecasts used for decision-making and even in product features

7 Working of prophet This is how machine is trained using prophet model which analyses the factors such as Standard Deviation, Mean, Slope etc. This model is then used to predict data of XYZ for future and thus making it easy for the user to decide whether to invest in XYZ or not. Graphical analysis is used in this model for predicting the future values of stocks. Thus after performing this approach, we can obtain the predicted increase and predicted decrease of XYZ in the upcoming days. The important thing about the Prophet algorithm is that, even without a prior knowledge or experience in the time series data specific data preparation or the configuration of the model parameters, you will get a very reasonable result that is good enough to start the time series data exploration with useful insights

8 5. Applications 1. Minimising the loss in investment or maximising the profit of an investor. 2. Taking prior measures for restricting the company from going into loss. 3. Providing both sentimental and machine learning approaches and investing in the enterprise which has high score in both the approaches

9 4. There is no need to search the web for the live stock prices for both BSE and NSE of a particular company. 5. One can directly extract out only positive or only negative news without actually digging deep in it. 6. Conclusion This paper has presented an overview of various techniques involving different algorithms used for Machine Learning and Sentimental Analysis. Though it is not a completely blended process as it done with a mixture of processes like creating a good User Interface, Displaying of live stock prices, Doing sentimental analysis on the scraped news articles and prediction of future stock prices obtained after process of Machine Learning. The user interface include Google account login and a discussion form for clarification of the queries from users. This can be used for real time process by many investors who invest in the stock market for making more profit by not Investing in a enterprises whose both algorithm values are low

10 Despite the vast researching, many challenges would still be faced such as combining the algorithms of both Machine Learning and Sentimental Analysis into a single process rather then doing both of them discretely. Acknowledgement We would like to thank our project guide i.e. Assistant Proffessor K.M.Umamaheswari, who had been a constant inspiration for the entire duration of the research, without whom this project would not have been possible. We are also grateful to the Head of the Department Dr. B. Amutha for giving us this opportunity. References [1] Youngsub Han, Kwangmi Ko Kim : Sentiment Analysis on Social Media Using Morphological Sentence Pattern Model [2] B.Siddhartha Reddy : Prediction of Stock Market Indices Using SAS [3] Bhat, A.A.; Kamath, S.S., "Automated stock price prediction and trading framework for Nifty intraday trading," Computing, Communications and Networking Technologies (ICCCNT),2013 Fourth International Conference on, vol., no., pp.1,6, 4-6 July [4] Asif Ullah Khan; T.K. Bandopadhyaya; Sudhir Sharma;, Comparisons of stock rated prediction Accuracy using Different Technical Indicators with Back Propagation Neural Network and genetic Algorithm Based back propagation Neural Network., First International Conference on Emerging Trends in Engineering and Technology, IEEE [5] Vincent Martin, Predicting the French Stock Market using Social Media Analysis, 8th International Workshop on Semantic and social media adaption and personalisation, IEE, pp

11 15405

12 15406

HKUST CSE FYP , TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS

HKUST CSE FYP , TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS HKUST CSE FYP 2017-18, TEAM RO4 OPTIMAL INVESTMENT STRATEGY USING SCALABLE MACHINE LEARNING AND DATA ANALYTICS FOR SMALL-CAP STOCKS MOTIVATION MACHINE LEARNING AND FINANCE MOTIVATION SMALL-CAP MID-CAP

More information

Stock Prediction Using Twitter Sentiment Analysis

Stock Prediction Using Twitter Sentiment Analysis Problem Statement Stock Prediction Using Twitter Sentiment Analysis Stock exchange is a subject that is highly affected by economic, social, and political factors. There are several factors e.g. external

More information

An Improved Approach for Business & Market Intelligence using Artificial Neural Network

An Improved Approach for Business & Market Intelligence using Artificial Neural Network Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

International Journal of Research in Engineering Technology - Volume 2 Issue 5, July - August 2017

International Journal of Research in Engineering Technology - Volume 2 Issue 5, July - August 2017 RESEARCH ARTICLE OPEN ACCESS The technical indicator Z-core as a forecasting input for neural networks in the Dutch stock market Gerardo Alfonso Department of automation and systems engineering, University

More information

A Big Data Framework for the Prediction of Equity Variations for the Indian Stock Market

A Big Data Framework for the Prediction of Equity Variations for the Indian Stock Market A Big Data Framework for the Prediction of Equity Variations for the Indian Stock Market Cerene Mariam Abraham 1, M. Sudheep Elayidom 2 and T. Santhanakrishnan 3 1,2 Computer Science and Engineering, Kochi,

More information

Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016)

Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016) Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016) 68-131 An Investigation of the Structural Characteristics of the Indian IT Sector and the Capital Goods Sector An Application of the

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue IV, April 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue IV, April 18,  ISSN STOCK MARKET PREDICTION USING ARIMA MODEL Dr A.Haritha 1 Dr PVS Lakshmi 2 G.Lakshmi 3 E.Revathi 4 A.G S S Srinivas Deekshith 5 1,3 Assistant Professor, Department of IT, PVPSIT. 2 Professor, Department

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL NETWORKS K. Jayanthi, Dr. K. Suresh 1 Department of Computer

More information

Prediction of Stock Closing Price by Hybrid Deep Neural Network

Prediction of Stock Closing Price by Hybrid Deep Neural Network Available online www.ejaet.com European Journal of Advances in Engineering and Technology, 2018, 5(4): 282-287 Research Article ISSN: 2394-658X Prediction of Stock Closing Price by Hybrid Deep Neural Network

More information

A COMPARATIVE STUDY OF DATA MINING TECHNIQUES IN PREDICTING CONSUMERS CREDIT CARD RISK IN BANKS

A COMPARATIVE STUDY OF DATA MINING TECHNIQUES IN PREDICTING CONSUMERS CREDIT CARD RISK IN BANKS A COMPARATIVE STUDY OF DATA MINING TECHNIQUES IN PREDICTING CONSUMERS CREDIT CARD RISK IN BANKS Ling Kock Sheng 1, Teh Ying Wah 2 1 Faculty of Computer Science and Information Technology, University of

More information

Background for Case Study Used in Workshop

Background for Case Study Used in Workshop Background for Case Study Used in Workshop Fethi Rabhi School of Computer Science and Engineering University of New South Wales Sydney Australia 1 Preliminaries Purpose of lecture Look at domains involved

More information

Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data

Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data Stock Price Prediction using Recurrent Neural Network (RNN) Algorithm on Time-Series Data Israt Jahan Department of Computer Science and Operations Research North Dakota State University Fargo, ND 58105

More information

Based on the audacious premise that a lot more can be done with a lot less.

Based on the audacious premise that a lot more can be done with a lot less. A lot less of IT involvement, minimal processes, greater attention to high-value tasks, enhanced decision-making all resulting in better underwriting. Based on the audacious premise that a lot more can

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18,   ISSN International Journal of Computer Engineering and Applications, Volume XII, Issue II, Feb. 18, www.ijcea.com ISSN 31-3469 AN INVESTIGATION OF FINANCIAL TIME SERIES PREDICTION USING BACK PROPAGATION NEURAL

More information

THE PROBLEM THERE IS AN INFORMATION CRISIS IN CONSUMER FINANCE LATIKA. Emilian. Alternative online lender without enough data

THE PROBLEM THERE IS AN INFORMATION CRISIS IN CONSUMER FINANCE LATIKA. Emilian. Alternative online lender without enough data THE PROBLEM THERE IS AN INFORMATION CRISIS IN CONSUMER FINANCE NEEDS A LOAN WANTS TO LEND LATIKA Small business owner in India Emilian Alternative online lender without enough data INTRODUCTION WHAT IS

More information

HEALTH ACTUARIES AND BIG DATA

HEALTH ACTUARIES AND BIG DATA HEALTH ACTUARIES AND BIG DATA What is Big Data? The term Big Data does not only refer to very large datasets. It is typically understood to refer to high volumes of data, requiring high velocity of ingestion

More information

International Journal of Computer Engineering and Applications, Volume XII, Issue IV, April 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Issue IV, April 18,   ISSN International Journal of Computer Engineering and Applications, Volume XII, Issue IV, April 18, www.ijcea.com ISSN 2321-3469 BEHAVIOURAL ANALYSIS OF BANK CUSTOMERS Preeti Horke 1, Ruchita Bhalerao 1, Shubhashri

More information

THE APPLICATION OF AI IN ENTERPRISE FOR IMPROVED PERFORMANCE, INNOVATION & CUSTOMER EXPERIENCE.

THE APPLICATION OF AI IN ENTERPRISE FOR IMPROVED PERFORMANCE, INNOVATION & CUSTOMER EXPERIENCE. 1 THE APPLICATION OF AI IN ENTERPRISE FOR IMPROVED PERFORMANCE, INNOVATION & CUSTOMER EXPERIENCE F E B R UA RY 2 0 1 8 2 Company overview. 3 is living the Megatrends right here in Africa. MyBucks Technology.

More information

AN ARTIFICIAL NEURAL NETWORK MODELING APPROACH TO PREDICT CRUDE OIL FUTURE. By Dr. PRASANT SARANGI Director (Research) ICSI-CCGRT, Navi Mumbai

AN ARTIFICIAL NEURAL NETWORK MODELING APPROACH TO PREDICT CRUDE OIL FUTURE. By Dr. PRASANT SARANGI Director (Research) ICSI-CCGRT, Navi Mumbai AN ARTIFICIAL NEURAL NETWORK MODELING APPROACH TO PREDICT CRUDE OIL FUTURE By Dr. PRASANT SARANGI Director (Research) ICSI-CCGRT, Navi Mumbai AN ARTIFICIAL NEURAL NETWORK MODELING APPROACH TO PREDICT CRUDE

More information

Predictive Risk Categorization of Retail Bank Loans Using Data Mining Techniques

Predictive Risk Categorization of Retail Bank Loans Using Data Mining Techniques National Conference on Recent Advances in Computer Science and IT (NCRACIT) International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume

More information

2015, IJARCSSE All Rights Reserved Page 66

2015, IJARCSSE All Rights Reserved Page 66 Volume 5, Issue 1, January 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Financial Forecasting

More information

Predictive modeling of stock indices closing from web search trends. Arjun R 1, Suprabha KR 2

Predictive modeling of stock indices closing from web search trends. Arjun R 1, Suprabha KR 2 Predictive modeling of stock indices closing from web search trends Arjun R 1, Suprabha KR 2 1 PhD Scholar, NIT Karnataka, Mangalore- 575025 2 Assistant Professor, NIT Karnataka, Mangalore -575025 Email:

More information

International Journal of Advance Engineering and Research Development REVIEW ON PREDICTION SYSTEM FOR BANK LOAN CREDIBILITY

International Journal of Advance Engineering and Research Development REVIEW ON PREDICTION SYSTEM FOR BANK LOAN CREDIBILITY Scientific Journal of Impact Factor (SJIF): 4.72 International Journal of Advance Engineering and Research Development Volume 4, Issue 12, December -2017 e-issn (O): 2348-4470 p-issn (P): 2348-6406 REVIEW

More information

Prediction Algorithm using Lexicons and Heuristics based Sentiment Analysis

Prediction Algorithm using Lexicons and Heuristics based Sentiment Analysis IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727 PP 16-20 www.iosrjournals.org Prediction Algorithm using Lexicons and Heuristics based Sentiment Analysis Aakash Kamble

More information

Available online at ScienceDirect. Procedia Computer Science 89 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 89 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 89 (2016 ) 441 449 Twelfth International Multi-Conference on Information Processing-2016 (IMCIP-2016) Prediction Models

More information

Role of soft computing techniques in predicting stock market direction

Role of soft computing techniques in predicting stock market direction REVIEWS Role of soft computing techniques in predicting stock market direction Panchal Amitkumar Mansukhbhai 1, Dr. Jayeshkumar Madhubhai Patel 2 1. Ph.D Research Scholar, Gujarat Technological University,

More information

A Big Data Analytical Framework For Portfolio Optimization

A Big Data Analytical Framework For Portfolio Optimization A Big Data Analytical Framework For Portfolio Optimization (Presented at Workshop on Internet and BigData Finance (WIBF 14) in conjunction with International Conference on Frontiers of Finance, City University

More information

Time Series Forecasting Of Nifty Stock Market Using Weka

Time Series Forecasting Of Nifty Stock Market Using Weka Time Series Forecasting Of Nifty Stock Market Using Weka Raj Kumar 1, Anil Balara 2 1 M.Tech, Global institute of Engineering and Technology,Gurgaon 2 Associate Professor, Global institute of Engineering

More information

SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets

SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets SAS Data Mining & Neural Network as powerful and efficient tools for customer oriented pricing and target marketing in deregulated insurance markets Stefan Lecher, Actuary Personal Lines, Zurich Switzerland

More information

Detection of Sentiment in CNX Nifty An Investigative Attempt Using Probabilistic Neural Network

Detection of Sentiment in CNX Nifty An Investigative Attempt Using Probabilistic Neural Network Detection of Sentiment in CNX Nifty An Investigative Attempt Using Probabilistic Neural Network Bikramaditya Ghosh Asst. Prof. ISME, Bangalore, bikram77777@gmail.com Abstract Dr. Padma Srinivasan Assoc.

More information

COMP 3211 Final Project Report Stock Market Forecasting using Machine Learning

COMP 3211 Final Project Report Stock Market Forecasting using Machine Learning COMP 3211 Final Project Report Stock Market Forecasting using Machine Learning Group Member: Mo Chun Yuen(20398415), Lam Man Yiu (20398116), Tang Kai Man(20352485) 23/11/2017 1. Introduction 1.1 Motivation

More information

Real-Time Text Analytics for Event Detection in the Financial World

Real-Time Text Analytics for Event Detection in the Financial World Real-Time Text Analytics for Event Detection in the Financial World Volker Stümpflen April 2015 Gaining value from Big Data Winner Information Delay - A Big Data Problem Markets are driven by news (and

More information

Text Mining Part 2. Opinion Mining / Sentiment Analysis. Combining Text procession with Machine Learning

Text Mining Part 2. Opinion Mining / Sentiment Analysis. Combining Text procession with Machine Learning Text Mining Part 2 Opinion Mining / Sentiment Analysis Combining Text procession with Machine Learning Data Mining Data Mining is the non-trivial extraction of previously unknown and potentially useful

More information

CHAPTER - IV INVESTMENT PREFERENCE AND DECISION INTRODUCTION

CHAPTER - IV INVESTMENT PREFERENCE AND DECISION INTRODUCTION CHAPTER - IV INVESTMENT PREFERENCE AND DECISION INTRODUCTION This Chapter examines the investment pattern of the retail equity investors in general and investment preferences, risk-return perceptions and

More information

SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS

SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS International Journal of Computer Engineering and Applications, Volume XI, Special Issue, May 17, www.ijcea.com ISSN 2321-3469 SURVEY OF MACHINE LEARNING TECHNIQUES FOR STOCK MARKET ANALYSIS Sumeet Ghegade

More information

Two kinds of neural networks, a feed forward multi layer Perceptron (MLP)[1,3] and an Elman recurrent network[5], are used to predict a company's

Two kinds of neural networks, a feed forward multi layer Perceptron (MLP)[1,3] and an Elman recurrent network[5], are used to predict a company's LITERATURE REVIEW 2. LITERATURE REVIEW Detecting trends of stock data is a decision support process. Although the Random Walk Theory claims that price changes are serially independent, traders and certain

More information

Stock Prediction Model with Business Intelligence using Temporal Data Mining

Stock Prediction Model with Business Intelligence using Temporal Data Mining ISSN No. 0976-5697!" #"# $%%# &'''( Stock Prediction Model with Business Intelligence using Temporal Data Mining Sailesh Iyer * Senior Lecturer SKPIMCS-MCA, Gandhinagar ssi424698@yahoo.com Dr. P.V. Virparia

More information

- Digital Tax Administration System -

- Digital Tax Administration System - 41 st World Continuous Auditing & Reporting Symposium University de Huelva, Spain November 9-10, 2017 - Digital Tax Administration System - Presented by: Vinod Kashyap NextGen Knowledge Solutions Private

More information

BUZ. Powered by Artificial Intelligence. BUZZ US SENTIMENT LEADERS ETF INVESTMENT PRIMER: DECEMBER 2017 NYSE ARCA

BUZ. Powered by Artificial Intelligence. BUZZ US SENTIMENT LEADERS ETF INVESTMENT PRIMER: DECEMBER 2017 NYSE ARCA BUZZ US SENTIMENT LEADERS ETF INVESTMENT PRIMER: DECEMBER 2017 BUZ NYSE ARCA Powered by Artificial Intelligence. www.alpsfunds.com 855.215.1425 Investors have not previously had a way to capitalize on

More information

An enhanced artificial neural network for stock price predications

An enhanced artificial neural network for stock price predications An enhanced artificial neural network for stock price predications Jiaxin MA Silin HUANG School of Engineering, The Hong Kong University of Science and Technology, Hong Kong SAR S. H. KWOK HKUST Business

More information

STOCK MARKET PREDICTION AND ANALYSIS USING MACHINE LEARNING

STOCK MARKET PREDICTION AND ANALYSIS USING MACHINE LEARNING STOCK MARKET PREDICTION AND ANALYSIS USING MACHINE LEARNING Sumedh Kapse 1, Rajan Kelaskar 2, Manojkumar Sahu 3, Rahul Kamble 4 1 Student, PVPPCOE, Computer engineering, PVPPCOE, Maharashtra, India 2 Student,

More information

Mobile Forex trading with TradeRoom Mini

Mobile Forex trading with TradeRoom Mini Mobile Forex trading with TradeRoom Mini 2017 Forexite Ltd. Contents 1 Contents Introduction 1. TradeRoom Mini startup 2. Trading account opening with Forexite 3. TradeRoom Mini main menu 4. Account funding

More information

Decision model, sentiment analysis, classification. DECISION SCIENCES INSTITUTE A Hybird Model for Stock Prediction

Decision model, sentiment analysis, classification. DECISION SCIENCES INSTITUTE A Hybird Model for Stock Prediction DECISION SCIENCES INSTITUTE A Hybird Model for Stock Prediction Si Yan Illinois Institute of Technology syan3@iit.edu Yanliang Qi New Jersey Institute of Technology yq9@njit.edu ABSTRACT In this paper,

More information

An Introduction to Opinion Mining and its Applications. Ana Valdivia Granada, 17/11/2016

An Introduction to Opinion Mining and its Applications. Ana Valdivia Granada, 17/11/2016 Sentiment Analysis An Introduction to Opinion Mining and its Applications Ana Valdivia Granada, 17/11/2016 About me Ana Valdivia Degree in Mathematics (UPC) MSc in Data Science (UGR) Paper about museums:

More information

Web Sentiment Analysis: Comparison of Sentiments with Stock Prices using Automatic Linear Modeling

Web Sentiment Analysis: Comparison of Sentiments with Stock Prices using Automatic Linear Modeling Web Sentiment Analysis: Comparison of Sentiments with Stock Prices using Automatic Linear Modeling A. Pappu Rajan Research Scholar,Department of Computer Science St.Xavier s College Palayamkottai, Tamil

More information

Data Analytics and Unstructured Data Actuaries 2.0

Data Analytics and Unstructured Data Actuaries 2.0 Data Analytics and Unstructured Data Actuaries 2.0 David Brown, KPMG Gary Richardson, KPMG 13 June 2014 Empowering Underwriters to listen to the whole data conversation High volume, velocity, variety New

More information

Lazy Prices: Vector Representations of Financial Disclosures and Market Outperformance

Lazy Prices: Vector Representations of Financial Disclosures and Market Outperformance Lazy Prices: Vector Representations of Financial Disclosures and Market Outperformance Kuspa Kai kuspakai@stanford.edu Victor Cheung hoche@stanford.edu Alex Lin alin719@stanford.edu Abstract The Efficient

More information

Session 3. Life/Health Insurance technical session

Session 3. Life/Health Insurance technical session SOA Big Data Seminar 13 Nov. 2018 Jakarta, Indonesia Session 3 Life/Health Insurance technical session Anilraj Pazhety Life Health Technical Session ANILRAJ PAZHETY MS (BUSINESS ANALYTICS), MBA, BE (CS)

More information

Predictive modelling around the world Peter Banthorpe, RGA Kevin Manning, Milliman

Predictive modelling around the world Peter Banthorpe, RGA Kevin Manning, Milliman Predictive modelling around the world Peter Banthorpe, RGA Kevin Manning, Milliman 11 November 2013 Agenda Introduction to predictive analytics Applications overview Case studies Conclusions and Q&A Introduction

More information

WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA. Workshop on Transfer Pricing. Safe Harbour Rules- An Overview

WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA. Workshop on Transfer Pricing. Safe Harbour Rules- An Overview WESTERN INDIAN REGIONAL COUNCIL, THE INSTITUTE OF CHARTERED ACCOUNTANTS OF INDIA Workshop on Transfer Pricing Safe Harbour Rules- An Overview Sanjay Kapadia Background Introduced in Finance (No 2) Act,

More information

Bond Market Prediction using an Ensemble of Neural Networks

Bond Market Prediction using an Ensemble of Neural Networks Bond Market Prediction using an Ensemble of Neural Networks Bhagya Parekh Naineel Shah Rushabh Mehta Harshil Shah ABSTRACT The characteristics of a successful financial forecasting system are the exploitation

More information

FINANCIAL MARKET OPERATIONS (UNIT-3) CAPITAL MARKET (PART-1)

FINANCIAL MARKET OPERATIONS (UNIT-3) CAPITAL MARKET (PART-1) FINANCIAL MARKET OPERATIONS (UNIT-3) CAPITAL MARKET (PART-1) 1. INTRODUCTION Hello viewers, Welcome to the lecture series on Financial Market Operations. Today we are going to take up Unit -3 and we are

More information

CS 475 Machine Learning: Final Project Dual-Form SVM for Predicting Loan Defaults

CS 475 Machine Learning: Final Project Dual-Form SVM for Predicting Loan Defaults CS 475 Machine Learning: Final Project Dual-Form SVM for Predicting Loan Defaults Kevin Rowland Johns Hopkins University 3400 N. Charles St. Baltimore, MD 21218, USA krowlan3@jhu.edu Edward Schembor Johns

More information

Development and Performance Evaluation of Three Novel Prediction Models for Mutual Fund NAV Prediction

Development and Performance Evaluation of Three Novel Prediction Models for Mutual Fund NAV Prediction Development and Performance Evaluation of Three Novel Prediction Models for Mutual Fund NAV Prediction Ananya Narula *, Chandra Bhanu Jha * and Ganapati Panda ** E-mail: an14@iitbbs.ac.in; cbj10@iitbbs.ac.in;

More information

VIT, Chennai Campus, Vandalur, Chennai. 3 School of Computing Science and Engineering, VIT, Chennai Campus, Vandalur, Chennai. 4 VIT Business School

VIT, Chennai Campus, Vandalur, Chennai. 3 School of Computing Science and Engineering, VIT, Chennai Campus, Vandalur, Chennai. 4 VIT Business School Volume 117 No. 15 2017, 387-396 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Analyzing the Stock Market behavior Using Event Study and Sentiment

More information

A study of financial performance of Banks with special reference (ICICI and SBI)

A study of financial performance of Banks with special reference (ICICI and SBI) International Journal of Science, Technology and Humanities 1 (2014) 99-104 Available online at www.svmcugi.com International Journal of Science, Technology and Humanities A study of financial performance

More information

FE501 Stochastic Calculus for Finance 1.5:0:1.5

FE501 Stochastic Calculus for Finance 1.5:0:1.5 Descriptions of Courses FE501 Stochastic Calculus for Finance 1.5:0:1.5 This course introduces martingales or Markov properties of stochastic processes. The most popular example of stochastic process is

More information

Business Strategies in Credit Rating and the Control of Misclassification Costs in Neural Network Predictions

Business Strategies in Credit Rating and the Control of Misclassification Costs in Neural Network Predictions Association for Information Systems AIS Electronic Library (AISeL) AMCIS 2001 Proceedings Americas Conference on Information Systems (AMCIS) December 2001 Business Strategies in Credit Rating and the Control

More information

Implications of E-Banking in Indian Scenario

Implications of E-Banking in Indian Scenario Asian Journal of Managerial Science ISSN: 2249-6300 Vol. 5 1, 2016, pp.7-11 The Research Publication, www.trp.org.in G. Kamalam 1 and S. Murugaiyan 2 1 PG and Research Department of Commerce, 2 Head and

More information

Pattern Recognition by Neural Network Ensemble

Pattern Recognition by Neural Network Ensemble IT691 2009 1 Pattern Recognition by Neural Network Ensemble Joseph Cestra, Babu Johnson, Nikolaos Kartalis, Rasul Mehrab, Robb Zucker Pace University Abstract This is an investigation of artificial neural

More information

Company Returns API Specification

Company Returns API Specification Company Returns API Specification Version: 3.3 Date Modified: 29 March 2017 Page 1 The context... 3 Functionality of the Company Returns API... 3 1.1. Stock Return... 3 1.2. Average Returns for list of

More information

Mortgage Lender Sentiment Survey

Mortgage Lender Sentiment Survey Mortgage Lender Sentiment Survey How Will Artificial Intelligence Shape Mortgage Lending? Q3 2018 Topic Analysis Published October 4, 2018 2018 Fannie Mae. Trademarks of Fannie Mae. 1 Table of Contents

More information

STOCK MARKET TRENDS PREDICTION USING NEURAL NETWORK BASED HYBRID MODEL

STOCK MARKET TRENDS PREDICTION USING NEURAL NETWORK BASED HYBRID MODEL International Journal of Computer Science Engineering and Information Technology Research (IJCSEITR) ISSN 2249-6831 Vol. 3, Issue 1, Mar 2013, 11-18 TJPRC Pvt. Ltd. STOCK MARKET TRENDS PREDICTION USING

More information

International Journal of Business and Administration Research Review, Vol. 2, Issue.17, Jan - March, Page 107

International Journal of Business and Administration Research Review, Vol. 2, Issue.17, Jan - March, Page 107 AN ANALYTICAL STUDY ON TOP 5 SCRIPTS OF BSE Mohnish Kapadi MBA 2 nd Year, Financial Management, SSR Institute of Management & Research, Affiliated to Savitribai Phule Pune University, Pune. Abstract An

More information

Introduction Guide. Know the people behind the business with Veda s Trading History reports

Introduction Guide. Know the people behind the business with Veda s Trading History reports Introduction Guide Know the people behind the business with Veda s Trading History reports B Inside this guide 02 Introduction 03 How it works 04 Why use Trading History reports 06 Case study snapshots

More information

Analytical Credit Dataset and Data Analytics in Financial Services Development of an Automated Data Extraction Tool for Banks and Credit Institutions

Analytical Credit Dataset and Data Analytics in Financial Services Development of an Automated Data Extraction Tool for Banks and Credit Institutions Analytical Credit Dataset and Data Analytics in Financial Services Development of an Automated Data Extraction Tool for Banks and Credit Institutions Masterarbeit zur Erlangung des akademischen Grades

More information

College of Applied Business (CAB)

College of Applied Business (CAB) BIM / Fifth Semester / ITC 221: Computer Graphics Brief Answer Questions. [10 1=10] 1. What do you understand by the term retrace procedure? 2. Which algorithm would you prefer to draw a line and why?

More information

Keyword: Risk Prediction, Clustering, Redundancy, Data Mining, Feature Extraction

Keyword: Risk Prediction, Clustering, Redundancy, Data Mining, Feature Extraction Volume 6, Issue 2, February 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Clustering

More information

A Study of the Dividend Pattern of Nifty Companies

A Study of the Dividend Pattern of Nifty Companies International Journal of Research in Business Studies and Management Volume 2, Issue 6, June 2015, PP 1-7 ISSN 2394-5923 (Print) & ISSN 2394-5931 (Online) A Study of the Dividend Pattern of Nifty Companies

More information

ISSN: (Online) Volume 4, Issue 2, February 2016 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 4, Issue 2, February 2016 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 4, Issue 2, February 2016 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data

Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data Statistical and Machine Learning Approach in Forex Prediction Based on Empirical Data Sitti Wetenriajeng Sidehabi Department of Electrical Engineering Politeknik ATI Makassar Makassar, Indonesia tenri616@gmail.com

More information

An Empirical Investigation of Investors Perception towards Derivative Trading

An Empirical Investigation of Investors Perception towards Derivative Trading Global Journal of Finance and Management. ISSN 0975-6477 Volume 6, Number 2 (2014), pp. 99-104 Research India Publications http://www.ripublication.com An Empirical Investigation of Investors Perception

More information

OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL

OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL Mrs.S.Mahalakshmi 1 and Mr.Vignesh P 2 1 Assistant Professor, Department of ISE, BMSIT&M, Bengaluru, India 2 Student,Department of ISE, BMSIT&M, Bengaluru,

More information

Streamline and integrate your claims processing

Streamline and integrate your claims processing Increase flexibility Reduce costs Expedite claims Streamline and integrate your claims processing DXC Insurance RISKMASTERTM For corporate claims and self-insured organizations DXC Insurance RISKMASTER

More information

Digital Footprint Data is an indispensable tool for all innovative lenders that helps reduce the most common mistakes all lenders make:

Digital Footprint Data is an indispensable tool for all innovative lenders that helps reduce the most common mistakes all lenders make: CONTENTS PRODUCT OVERVIEW...3 CLIENT RISK INDICATOR...5 DEVICE INFORMATION...6 BEHAVIOUR INFORMATION...8 WEB SEARCH INFORMATION...10 LOCATION ASSESSMENT...12 FRAUD DETECTION...15 EXAMPLES...17 ROAD TO

More information

Performance Analysis of the Index Mutual Fund

Performance Analysis of the Index Mutual Fund Asian Journal of Managerial Science ISSN: 2249-6300 Vol.8 No.1, 2019, pp. 1-5 The Research Publication, www.trp.org.in Yasmeen Bano 1 and S. Vasantha 2 1 Research Scholar, 2 Professor & Research Supervisor

More information

GOOGLE TRENDS AND STOCK RETURNS A STUDY OF INVESTOR SENTIMENTS USING BIG DATA. School of Business, Amrita Vishwa Vidyapeetham, Coimbatore.

GOOGLE TRENDS AND STOCK RETURNS A STUDY OF INVESTOR SENTIMENTS USING BIG DATA. School of Business, Amrita Vishwa Vidyapeetham, Coimbatore. Volume 118 No. 22 2018, 941-946 ISSN: 1314-3395 (on-line version) url: http://acadpubl.eu/hub ijpam.eu GOOGLE TRENDS AND STOCK RETURNS A STUDY OF INVESTOR SENTIMENTS USING BIG DATA 1 Hari Krishnan.A.V,

More information

Genetic Algorithm Based Backpropagation Neural Network Performs better than Backpropagation Neural Network in Stock Rates Prediction

Genetic Algorithm Based Backpropagation Neural Network Performs better than Backpropagation Neural Network in Stock Rates Prediction 162 Genetic Algorithm Based Backpropagation Neural Network Performs better than Backpropagation Neural Network in Stock Rates Prediction Asif Ullah Khan Asst. Prof. Dept. of Computer Sc. & Engg. All Saints

More information

Stock Market Prediction using Artificial Neural Networks IME611 - Financial Engineering Indian Institute of Technology, Kanpur (208016), India

Stock Market Prediction using Artificial Neural Networks IME611 - Financial Engineering Indian Institute of Technology, Kanpur (208016), India Stock Market Prediction using Artificial Neural Networks IME611 - Financial Engineering Indian Institute of Technology, Kanpur (208016), India Name Pallav Ranka (13457) Abstract Investors in stock market

More information

A Study on Financial Efficiency of Selected FMCG Companies in India

A Study on Financial Efficiency of Selected FMCG Companies in India Continuous Issue 22 August September 2017 A Study on Financial Efficiency of Selected FMCG Companies in India Abstract Products which are having a quick turnover, and relatively low cost are known as Fast

More information

Manage your research evaluation and consumption in a MiFID II world

Manage your research evaluation and consumption in a MiFID II world Manage your research evaluation and consumption in a MiFID II world Thomson Reuters Buy-Side Research Solutions With research and execution services becoming unbundled as part of the upcoming MiFID II

More information

Epidemiology of Inflation Expectations of Households and Internet Search- An Analysis for India

Epidemiology of Inflation Expectations of Households and Internet Search- An Analysis for India Epidemiology of Expectations of Households and Internet Search- An Analysis for India Saakshi Sohini Sahu Siddhartha Chattopadhyay Abstract August 5, 07 This paper investigates how inflation expectations

More information

Raising Your Actuarial IQ (Improving Information Quality)

Raising Your Actuarial IQ (Improving Information Quality) Raising Your Actuarial IQ CAS Management Educational Materials Working Party with Martin E. Ellingsworth Actuarial IQ Introduction IQ stands for Information Quality Introduction to Quality and Management

More information

A Study on the Analysis and Comparison of Non Performing Asset of Canara and HDFC Bank

A Study on the Analysis and Comparison of Non Performing Asset of Canara and HDFC Bank DOI : 10.18843/ijms/v5i1(1)/11 DOI URL :http://dx.doi.org/10.18843/ijms/v5i1(1)/11 A Study on the Analysis and Comparison of Non Performing Asset of Canara and HDFC Bank Satheeshkumar. C, Guest Lecturer,

More information

Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques

Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques Stock Trading Following Stock Price Index Movement Classification Using Machine Learning Techniques 6.1 Introduction Trading in stock market is one of the most popular channels of financial investments.

More information

ALLFINANZ Digital New Business & Underwriting

ALLFINANZ Digital New Business & Underwriting Digital New Business & Underwriting Transform underwriting into a sales enabler and profit driver Life Group Health Disability www.munichre.com/automation-solutions Digital New Business and Underwriting

More information

Analysis of Partial Discharge using Phase-Resolved (n-q) Statistical Techniques

Analysis of Partial Discharge using Phase-Resolved (n-q) Statistical Techniques Analysis of Partial Discharge using Phase-Resolved (n-q) Statistical Techniques Priyanka M. Kothoke, Namrata R. Bhosale, Amol Despande, Dr. Alice N. Cheeran Department of Electrical Engineering, Veermata

More information

STOCK MARKET. Keywords: Stock Market, Exchange system, Trading Procedure, Stock Exchanges, Investors. I. INTRODUCTION TO NATIONAL STOCK EXCHANGE

STOCK MARKET. Keywords: Stock Market, Exchange system, Trading Procedure, Stock Exchanges, Investors. I. INTRODUCTION TO NATIONAL STOCK EXCHANGE STOCK MARKET 1 BH.L.MOHANRAJU, 2 K.NEELIMA, 3 B.KRISHNA PRASAD 1 Assistant Professor, Dnr School Of Business Management, Bhimavaram 2 Assistant Professor, Dnr College of P.G Courses, Bhimavaram 3 Assistant

More information

An Analytical Study to Identify the Dependence of BSE 100 on FII & DII Activity (Study Period Sept 2007 to October 2013)

An Analytical Study to Identify the Dependence of BSE 100 on FII & DII Activity (Study Period Sept 2007 to October 2013) International Journal of Business and Management Invention ISSN (Online): 2319 8028, ISSN (Print): 2319 801X Volume 3 Issue 8 ǁ August. 2014 ǁ PP.12-16 An Analytical Study to Identify the Dependence of

More information

CONSTRUCTION OF OPTIMAL PORTFOLIO USING SHARPE S SINGLE INDEX MODEL - A STUDY WITH REFERENCE TO BANKING AND AUTOMOBILE SECTORS

CONSTRUCTION OF OPTIMAL PORTFOLIO USING SHARPE S SINGLE INDEX MODEL - A STUDY WITH REFERENCE TO BANKING AND AUTOMOBILE SECTORS CONSTRUCTION OF OPTIMAL PORTFOLIO USING SHARPE S SINGLE INDEX MODEL - A STUDY WITH REFERENCE TO BANKING AND AUTOMOBILE SECTORS * Ms.S.SUBASHREE, Assistant Professor, Department of Commerce and Business

More information

IMPACT OF DIVIDEND ANNOUNCEMENT ON SHARE PRICE OF BALAJI TELEFILMS LTD.

IMPACT OF DIVIDEND ANNOUNCEMENT ON SHARE PRICE OF BALAJI TELEFILMS LTD. Volume 118 No. 15 2018, 111-116 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu IMPACT OF DIVIDEND ANNOUNCEMENT ON SHARE PRICE OF BALAJI TELEFILMS

More information

DIGITAL MARKETING IS AN UMBRELLA TERM FOR THE MARKETING OF PRODUCT OR SERVICES USING DIGITAL TECHNOLOGIES, MAINLY ON THE INETRENET, BUT ALSO

DIGITAL MARKETING IS AN UMBRELLA TERM FOR THE MARKETING OF PRODUCT OR SERVICES USING DIGITAL TECHNOLOGIES, MAINLY ON THE INETRENET, BUT ALSO DIGITAL MARKETING IS AN UMBRELLA TERM FOR THE MARKETING OF PRODUCT OR SERVICES USING DIGITAL TECHNOLOGIES, MAINLY ON THE INETRENET, BUT ALSO INCLUDING MOBILE PHONES, DISPLAY ADVERTISING, AND ANY OTHER

More information

Stock Market Prediction System

Stock Market Prediction System Stock Market Prediction System W.N.N De Silva 1, H.M Samaranayaka 2, T.R Singhara 3, D.C.H Wijewardana 4. Sri Lanka Institute of Information Technology, Malabe, Sri Lanka. { 1 nathashanirmani55, 2 malmisamaranayaka,

More information

Artificially Intelligent Forecasting of Stock Market Indexes

Artificially Intelligent Forecasting of Stock Market Indexes Artificially Intelligent Forecasting of Stock Market Indexes Loyola Marymount University Math 560 Final Paper 05-01 - 2018 Daniel McGrath Advisor: Dr. Benjamin Fitzpatrick Contents I. Introduction II.

More information

RespondTM. You can t do anything about the weather. Or can you?

RespondTM. You can t do anything about the weather. Or can you? RespondTM You can t do anything about the weather. Or can you? You can t do anything about the weather Or can you? How insurance firms are using sophisticated natural hazard tracking, analysis, and prediction

More information

Analysis of Financial Strength of select firms from Indian Textiles Industry using Altman s Z Score Analysis

Analysis of Financial Strength of select firms from Indian Textiles Industry using Altman s Z Score Analysis Analysis of Financial Strength of select firms from Indian Textiles Industry using Altman s Z Score Analysis By Gururaj Barki [a] & Dr. Sadanand Halageri [b] Abstract Measuring the financial health of

More information

A Comparative Study of Ensemble-based Forecasting Models for Stock Index Prediction

A Comparative Study of Ensemble-based Forecasting Models for Stock Index Prediction Association for Information Systems AIS Electronic Library (AISeL) MWAIS 206 Proceedings Midwest (MWAIS) Spring 5-9-206 A Comparative Study of Ensemble-based Forecasting Models for Stock Index Prediction

More information

SHORT RUN & LONG RUN PERFORMANCE OF IPO & FPO INDIAN STOCK MARKET

SHORT RUN & LONG RUN PERFORMANCE OF IPO & FPO INDIAN STOCK MARKET Abstract SHORT RUN & LONG RUN PERFORMANCE OF IPO & FPO INDIAN STOCK MARKET By Bhakti Mulchandani (Chandni Gerelani) Now-a-days, Initial Public Offer (IPO) has become one of the preferred investments for

More information

A study on impact of foreign institutional investor on Indian stock market

A study on impact of foreign institutional investor on Indian stock market International Journal of Commerce and Management Research ISSN: 2455-1627, Impact Factor: RJIF 5.22 www.managejournal.com Volume 2; Issue 11; November 2016; Page No. 91-96 A study on impact of foreign

More information