SENTIMENT ANALYSIS CSE-634: DATA MINING

Size: px
Start display at page:

Download "SENTIMENT ANALYSIS CSE-634: DATA MINING"

Transcription

1 SENTIMENT ANALYSIS CSE-634: DATA MINING TEAM 4 PROF. ANITA WASILEWSKA

2 REFERENCES Johan Bollen, Huina Mao, Xiaojun Zeng Twitter mood predicts the stock market, Journal of Computational Science 2:1, /j.jocs

3 OVERVIEW What is Sentiment analysis? Why Sentiment analysis? How does it work? Demo Challenges Application Future of sentiment analysis Few Tools and Concepts of Sentiment Analysis Paper presentation

4 SENTIMENT ANALYSIS It allows us to track attitudes and feelings on the web. People write blog posts, comments, reviews and tweets about all sorts of different topics. We can track products, brands and people for example and determine whether they are viewed positively or negatively on the web. Source: Source:

5 OTHER NAMES FOR SENTIMENT ANALYSIS Opinion extraction Opinion mining Sentiment mining Subjectivity analysis Source:

6 SCHERER TYPOLOGY OF AFFECTIVE STATES Emotion: brief organically synchronized evaluation of a major event. angry, sad, joyful, fearful, ashamed, proud, elated Mood: diffuse non-caused low-intensity long-duration change in subjective feeling cheerful, gloomy, irritable, listless, depressed, buoyant Interpersonal stances: affective stance toward another person in a specific interaction friendly, flirta1ous, distant, cold, warm, supportive, contemptuous Attitudes: enduring, affectively colored beliefs, dispositions towards objects or persons liking, loving, valuing, desiring Personality traits: stable personality dispositions and typical behavior tendencies nervous, anxious, reckless, morose, hostile, jealous Source:

7 Source:

8 ELEMENTS OF SENTIMENT 1. Holder (source) of attitude 2. Target (aspect) of attitude 3. Text containing the attitude (Sentence or entire document) 4. Type of attitude From a set of types (Like, love, hate, value, desire, etc. ) Simple more commonly used weighted polarity: positive, negative, neutral, together with strength

9 POSITIVE SENTIMENTS

10 NEUTRAL SENTIMENTS

11 NEGATIVE SENTIMENTS

12 WHY SENTIMENT ANALYSIS? Movie: is this review positive or negative? Products: what do people think about the newly released product? Politics: what do people think about this candidate or issue? Prediction: predict election outcomes or market trends from sentiment Source:

13 METHODS OF DOING SENTIMENT ANALYSIS Lexical approach 1. Dictionary based approach 2. Corpus based approach Machine learning 1. Supervised learning 2. Unsupervised learning Source:

14 HOW DOES IT WORK? THE MACHINE LEARNING WAY Input text Transformation into feature vector Initialise models such as NN Tokenize Dictionary creation Train the model Stopword filtering Stemming Predict the sentiment

15 HOW DOES IT WORK? THE LEXICAL WAY Preprocess input text Polarity calculation Output the sentiment score Tokenization Sentiment detection by score Negation handling POS tagging Source:

16 DEMO This is a demonstration of sentiment analysis using a NLTK powered text classification process. It can tell you whether it thinks the text you enter below expresses positive sentiment, negative sentiment, or if it's neutral.

17 CHALLENGES LEADING TO LATEST DEVELOPMENTS

18 DETECTING SENTIMENT OF THE WRITER, READER, AND OTHER ENTITIES For example, James: The pop star suffered a fatal overdose of heroine People can react differently to the same utterance, for e.g. people on the opposite sides of a debate or rival sports fans. Modeling listener sentiment requires modeling listener profiles. This is an area of research not explored much by the community. Source:

19 SENTIMENT TOWARDS ASPECTS OF AN ENTITY Source:

20 SENTIMENT TOWARDS ASPECTS OF AN ENTITY A review of a product or service can express sentiment towards various aspects. For example, I really liked the pizza at the restaurant but their service was disappointing. The best performing systems for detecting aspect sentiment adds localization features so that more weight is given to sentiment features close to the mention of the aspect. Source:

21 STANCE DETECTION Task of automatically determining from text whether the author of the text is in favor of, against, or neutral towards a proposition or target. For example, Target of interest: women have the right to abortion Text: A foetus has rights too! Automatically detecting stance has widespread applications in information retrieval, text summarization, and textual entailment. Source:

22 CHALLENGES IN SPECIFIC TYPES OF SENTIMENT COMPOSITION Negated Expressions Earlier works on negation handling employ simple heuristics such as flipping the polarity of the words in a negator s scope or changing the degree of sentiment of the modified word by a fixed constant. Several Proposals for embeddings-based recursive neural network models to capture the impact of negators more precisely Still Unexplored: In what contexts does the same negator impact the sentiment of its scope more and in what contexts is the impact less; how do people in different communities and cultures use negations differently Source:

23 CHALLENGES IN SPECIFIC TYPES OF SENTIMENT COMPOSITION Sentiment of Sentences, Tweets, and SMS messages creatively spelled words (e.g. happpeee) slang (e.g. bling) abbreviations (e.g. lol) hashtags and conjoined words (e.g. #loveumom) tweets with emoticons. Source:

24 CHALLENGES IN SPECIFIC TYPES OF SENTIMENT COMPOSITION Phrases with Degree Adverbs, Intensifiers, and Modals For example, cannot work seems less positive than work or will work (cannot and will are modals). Several areas remain unexplored, such as identifying patterns and regularities in how different kinds of degree adverbs and intensifiers impact sentiment, ranking degree adverbs and intensifiers in terms of how they impact sentiment, and determining when (in what contexts) the same modifier will impact sentiment differently than its usual behavior. I m pretty sure we ve met before [quite, but not extremely] He has a pretty strident rant about how important it is. Source:

25 CHALLENGES IN ANNOTATING FOR SENTIMENT IN DIFFERENT INSTANCES Success or failure of one side w.r.t. another Yay! France beat Germany 3 1, Supreme court judges in favor of gay marriage, and the coalition captured the rebels. In the 2014 Sochi Winter Olympics when Finland beat Russia in ice hockey, the event was tweeted around the world predominantly as Russia lost to Finland as opposed to Finland beat Russia. Source:

26 CHALLENGES IN ANNOTATING FOR SENTIMENT IN DIFFERENT INSTANCES Sarcasm and ridicule Source:

27 MORE CHALLENGING EXAMPLES Disliking swimming is not really my thing. (Negation, inverted word order) Sometimes I really hate the place (Adverbial modifies the sentiment) I'd really truly love going out in this cold weather! (Possibly sarcastic) Chris Craft is better looking than Limestone. (Two brand names, identifying target of attitude is difficult). The movie is surprising with plenty of unsettling plot twists. (Negative term used in a positive sense in certain domains). I love my mobile but would not recommend it to any of my colleagues. (Qualified positive sentiment, difficult to categorize) The actors are good, the music is brilliant and appealing. Yet, the movie fails to strike a chord (Contains words that contradict the overall sentiment of the sentence) Source:

28 INTERESTING STORY Expedia Canada noticed that there was a steady increase in negative feedback to the music used in one of their television adverts. Sentiment analysis conducted by the brand revealed that the music played on the commercial had become incredibly irritating after multiple airings, and consumers were flocking to social media to vent their frustrations. A couple of weeks after the advert first aired, over half of online conversation about the campaign was negative. Expedia then reacted by airing a new version of the advert. Source:

29 CAVEATS OF SENTIMENT ANALYSIS Knowing sentiment is a very natural ability of a human being. Can a machine be trained to do it as good as a human? Sentiment analysis has its limitations and is not to be used as a 100% accurate marker. As with any automated process, it is prone to error. Beyond reliability, it s important to acknowledge that human s expression doesn t fit into just three buckets; not all sentiment can be categorized as simply as positive, negative or neutral. Source:

30 TWITTER SENTIMENT APP Twitter Sentiment App Alec Go, Richa Bhayani, Lei Huang Twitter Sentiment Classification using Distant Supervision

31 RESEARCH PAPER

32 Tools and Concepts used in the paper 1. OpinionFinder: It is a publicly available software package for sentiment analysis that can be applied to determine sentence-level subjectivity, i.e. to identify the emotional polarity (positive or negative) of sentences. 2. GPOMS: Unlike OF, which is a unidimensional model of mood, Google-Profile of Mood States, a proprietary tool, can measure human mood states in terms of 6 different mood dimensions, namely Calm, Alert, Sure, Vital, Kind and Happy. GPOMS mood dimensions and lexicon are derived from an existing and well-vetted psychometric instrument, namely the Profile of Mood States (POMS-bi).

33 Daily time series of public mood fluctuations OF and GPOMS were applied to tweets posted in a 2-month period (Oct - Dec, 2008) This period was chosen specifically because it includes several socio-cultural events that may have had a unique, significant and complex effect on public mood namely- 1. U.S presidential election and 2. Thanksgiving Correlation between the trend obtained from OF lexicon and the six dimensions of GPOMS using multiple regression Y OF = α + i=1 6 β i X i + ε t, Img Source:

34 3. Granger causality analysis: It is a statistical hypothesis test for determining whether one time series is useful in forecasting another. While regressions reflect "mere" correlations, this has the ability to predict the future values of a time series using prior values of another time series. 4. MAPE: The mean absolute percentage error is a measure of prediction accuracy of a forecasting method in statistics, for example in trend estimation. 5. MDA: Mean Direction Accuracy is a measure of prediction accuracy of a forecasting method in statistics. It compares the forecast direction (upward or downward) to the actual realized direction

35 6. Self-Organizing Fuzzy Neural Network model A Self-organizing learning algorithm: An evolving learning algorithm which will automatically determine the number of neurons or basis functions and learn model parameters Convergence to real systems has been proved if there are enough training data High accuracy in comparing many other methods A fuzzy neural network is a learning machine that finds the parameters of a fuzzy system (i.e., fuzzy sets, fuzzy rules) by exploiting approximation techniques from neural networks. Fuzzy sets is mathematical model of vague qualitative or quantitative data i.e somewhat like sets whose elements have degrees of membership. Img Source:

36 Algorithm Steps: Start from a network with one neuron Adding a neural (or basis function) when the existing model is not complicated enough to catch up the nonlinear behavior. Merger neurons if they are highly similar to avoid overfitting. Pruning a neuron if it makes little contribution to the forecasting accuracy Recursive least square parameter learning to catch the time varying factor. The output of a neuron in the layer 5 is: Img Source:

37 Twitter Mood Predicts the Stock Market Johan Bollen, Huina Mao, Xiao-Jun Zeng School of Informatics and Computing, Indiana University, USA School of Computer Science, University of Manchester, UK Publication: Journal of Computational Science, Volume 2, Issue I, March 2011 Citations:

38 "Sooo does anyone else not open Snapchat anymore? Or is it just me... ugh this is so sad," Jenner tweeted on Wednesday.

39 Why this paper? The stock market is an important part of the economy of a country as it plays pivotal role in the growth of its industries and commerce, eventually affects the economy of the country. Ever-fluctuating - prices are largely driven by new info. News is unpredictable and follow a random walk pattern. Cannot be predicted with more than 50% accuracy. New research suggests that mining social media data can provide valuable information to predict changes in various economic/commercial fields. (e.g; A paper in AAAI 2006 Spring Symposium showed assessments of blog sentiment to predict future movie sales)

40 Why this paper? (Cont.) Behavioral finance has provided proof that financial decisions are significantly driven by emotion and mood. Hence => Sentiment and mood has significant impact to investors behavior and stock move We need reliable, scalable and early assessments of the public mood at a time for practical prediction. Limitations: i) Large surveys are expensive and time-consuming ii) The accuracy is limited Goal: Investigate whether public analyzing sentiment, as large-scale collections of daily Twitter posts, can indeed be used to predict the stock market or not!!

41 Data Overview Timeline: Public tweets: Feb 28 - Dec 19th, 2008 (9,853,498 tweets posted by approximately 2.7 M users). Data type : Tweets that contain explicit statements of their author's mood states, i feel, i am feeling, i m feeling, i dont feel, I m, Im, I am, and makes me. The Dow Jones Industrial Average (DJIA) is a stock market index that shows how 30 large publicly owned companies based in the US have traded during a standard trading session. e.g; 3M, Amex, Apple, Boeing Extract a time series of daily DJIA closing-values from Yahoo! Finance. (Feb 28 to Dec 19th, 2008)

42 Approach 3 phases: 1) Creation and validation of OF and GPOMS public mood time series Oct-Dec '08 (2) Use of Granger causality analysis to determine correlation between DJIA, OF and GPOMS public mood Aug-Dec '08 (3) Training of a SOFNN to predict DJIA v a l u e s o n t h e b a s i s o f v a r i o u s combinations of past DJIA values and OF and GPOMS public mood data March-Dec 08. Img Source:

43 Method Overview 1. Granger causality analysis to correlate the daily time series values produced by GPOMS and OpinionFinder vs. the DJIA of past n days using 2 linear models: L 1: D t = α + i=1 N β i D t 1 + ε t L 2: D t = α + i=1 N β i D t 1 + i=1 N γ i X t 1 + ε t Results (P values) reject the null hypothesis with high level of confidence, meaning, mood time series do predict DJIA values, however this result only applies to 1 GPOMS mood dimension (Calm) 2. To better address the non-linear effects, compare the performance of a SOFNN model that predicts DJIA values on the basis of two sets of inputs: (1) the past 3 days of DJIA values, and (2) the same combined with permutations of our mood time series. SOFNN model deployed to test the hypothesis that the prediction accuracy of DJIA prediction models can be improved by including measurements of public mood.

44 Experiment Result DJIA daily prediction using SOFNN. I 0 = {DJIA t-3,2,1 } -input vars I 1 = {DJIA t-3,2,1, X 1,t-3,2,1 } I 1,2 = {DJIA t-3,2,1, X 1,t-3,2,1,, X 2,t-3,2,1 } I 1,3 =. I OF = {DJIA t-3,2,1, X OF,t-3,2,1 } Img Source:

45 Experiment Result To assess the statistical significance of the SOFNN achieving the above mentioned accuracy in predicting the up and down movement of the DJIA, the odds of this result occurring by chance was calculated. The SOFNN direction accuracy is most likely not the result of chance nor selecting a specifically favorable test period Since the SOFNN prediction is more accurate when using a combination of X 1 and X 6, this confirms a nonlinear relation among the different dimensions of moods so is between public mood and stock market values. Certain dimensions of public mood states, in particular Calm, increase the accuracy of a Self Organizing Fuzzy Neural Network model in predicting up and down changes in DJIA closing values to 87.6%.

46 Conclusion and Future Research Social media data include some useful mood and sentiment information related to stock market. Including such mood and sentiment information can improve the accuracy of stock prediction. More comprehensive prediction system combines: o Online news mining from web data and social media data, as big news are often accumulated from many small news and such online mining will provide the early indicators for the current unpredictable news. o Online social media data mining to get early mood and sentiment indicators o Historical stock price data and fundamental financial data

47

Can Twitter predict the stock market?

Can Twitter predict the stock market? 1 Introduction Can Twitter predict the stock market? Volodymyr Kuleshov December 16, 2011 Last year, in a famous paper, Bollen et al. (2010) made the claim that Twitter mood is correlated with the Dow

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

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

UNIVERSITY OF CALGARY. Analyzing Causality between Actual Stock Prices and User-weighted Sentiment in Social Media. for Stock Market Prediction

UNIVERSITY OF CALGARY. Analyzing Causality between Actual Stock Prices and User-weighted Sentiment in Social Media. for Stock Market Prediction UNIVERSITY OF CALGARY Analyzing Causality between Actual Stock Prices and User-weighted Sentiment in Social Media for Stock Market Prediction by Jin-Tak Park A THESIS SUBMITTED TO THE FACULTY OF GRADUATE

More information

Predicting stock prices for large-cap technology companies

Predicting stock prices for large-cap technology companies Predicting stock prices for large-cap technology companies 15 th December 2017 Ang Li (al171@stanford.edu) Abstract The goal of the project is to predict price changes in the future for a given stock.

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

Do Media Sentiments Reflect Economic Indices?

Do Media Sentiments Reflect Economic Indices? Do Media Sentiments Reflect Economic Indices? Munich, September, 1, 2010 Paul Hofmarcher, Kurt Hornik, Stefan Theußl WU Wien Hofmarcher/Hornik/Theußl Sentiment Analysis 1/15 I I II Text Mining Sentiment

More information

Sentiment Extraction from Stock Message Boards The Das and

Sentiment Extraction from Stock Message Boards The Das and Sentiment Extraction from Stock Message Boards The Das and Chen Paper University of Washington Linguistics 575 Tuesday 6 th May, 2014 Paper General Factoids Das is an ex-wall Streeter and a finance Ph.D.

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

Cognitive Pattern Analysis Employing Neural Networks: Evidence from the Australian Capital Markets

Cognitive Pattern Analysis Employing Neural Networks: Evidence from the Australian Capital Markets 76 Cognitive Pattern Analysis Employing Neural Networks: Evidence from the Australian Capital Markets Edward Sek Khin Wong Faculty of Business & Accountancy University of Malaya 50603, Kuala Lumpur, Malaysia

More information

The Influence of News Articles on The Stock Market.

The Influence of News Articles on The Stock Market. The Influence of News Articles on The Stock Market. COMP4560 Presentation Supervisor: Dr Timothy Graham U6015364 Zhiheng Zhou Australian National University At Ian Ross Design Studio On 2018-5-18 Motivation

More information

Topic-based vector space modeling of Twitter data with application in predictive analytics

Topic-based vector space modeling of Twitter data with application in predictive analytics Topic-based vector space modeling of Twitter data with application in predictive analytics Guangnan Zhu (U6023358) Australian National University COMP4560 Individual Project Presentation Supervisor: Dr.

More information

Novel Approaches to Sentiment Analysis for Stock Prediction

Novel Approaches to Sentiment Analysis for Stock Prediction Novel Approaches to Sentiment Analysis for Stock Prediction Chris Wang, Yilun Xu, Qingyang Wang Stanford University chrwang, ylxu, iriswang @ stanford.edu Abstract Stock market predictions lend themselves

More information

Predicting Economic Recession using Data Mining Techniques

Predicting Economic Recession using Data Mining Techniques Predicting Economic Recession using Data Mining Techniques Authors Naveed Ahmed Kartheek Atluri Tapan Patwardhan Meghana Viswanath Predicting Economic Recession using Data Mining Techniques Page 1 Abstract

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

INTELIGENCIA ARTIFICIAL. Machine Learning-Based Analysis of the Association between Online Texts and Stock Price Movements

INTELIGENCIA ARTIFICIAL. Machine Learning-Based Analysis of the Association between Online Texts and Stock Price Movements Inteligencia Artificial 21(61), 95-110 doi: 10.4114/intartif.vol21iss61pp95-110 INTELIGENCIA ARTIFICIAL http://journal.iberamia.org/ Machine Learning-Based Analysis of the Association between Online Texts

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

COGNITIVE LEARNING OF INTELLIGENCE SYSTEMS USING NEURAL NETWORKS: EVIDENCE FROM THE AUSTRALIAN CAPITAL MARKETS

COGNITIVE LEARNING OF INTELLIGENCE SYSTEMS USING NEURAL NETWORKS: EVIDENCE FROM THE AUSTRALIAN CAPITAL MARKETS Asian Academy of Management Journal, Vol. 7, No. 2, 17 25, July 2002 COGNITIVE LEARNING OF INTELLIGENCE SYSTEMS USING NEURAL NETWORKS: EVIDENCE FROM THE AUSTRALIAN CAPITAL MARKETS Joachim Tan Edward Sek

More information

Enhancing Financial Decision-Making Using Social Behavior Modeling

Enhancing Financial Decision-Making Using Social Behavior Modeling Enhancing Financial Decision-Making Using Social Behavior Modeling Ruoqian Liu, Ankit Agrawal, Wei-keng Liao, Alok Choudhary Department of Electrical Engineering and Computer Science Northwestern University

More information

When determining but for sales in a commercial damages case,

When determining but for sales in a commercial damages case, JULY/AUGUST 2010 L I T I G A T I O N S U P P O R T Choosing a Sales Forecasting Model: A Trial and Error Process By Mark G. Filler, CPA/ABV, CBA, AM, CVA When determining but for sales in a commercial

More information

A Comparative Study of Various Forecasting Techniques in Predicting. BSE S&P Sensex

A Comparative Study of Various Forecasting Techniques in Predicting. BSE S&P Sensex NavaJyoti, International Journal of Multi-Disciplinary Research Volume 1, Issue 1, August 2016 A Comparative Study of Various Forecasting Techniques in Predicting BSE S&P Sensex Dr. Jahnavi M 1 Assistant

More information

Applications of Twitter Emotion Detection for Stock Market Prediction. Clare H. Liu. S.B., Massachusetts Institute of Technology (2016)

Applications of Twitter Emotion Detection for Stock Market Prediction. Clare H. Liu. S.B., Massachusetts Institute of Technology (2016) Applications of Twitter Emotion Detection for Stock Market Prediction by Clare H. Liu S.B., Massachusetts Institute of Technology (2016) Submitted to the Department of Electrical Engineering and Computer

More information

Social Network based Short-Term Stock Trading System

Social Network based Short-Term Stock Trading System Social Network based Short-Term Stock Trading System Paolo Cremonesi paolo.cremonesi@polimi.it Chiara Francalanci francala@elet.polimi.it Alessandro Poli poli@elet.polimi.it Roberto Pagano pagano@elet.polimi.it

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

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

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

Analyzing Representational Schemes of Financial News Articles

Analyzing Representational Schemes of Financial News Articles Analyzing Representational Schemes of Financial News Articles Robert P. Schumaker Information Systems Dept. Iona College, New Rochelle, New York 10801, USA rschumaker@iona.edu Word Count: 2460 Abstract

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

STOCK MARKET FORECASTING USING NEURAL NETWORKS

STOCK MARKET FORECASTING USING NEURAL NETWORKS STOCK MARKET FORECASTING USING NEURAL NETWORKS Lakshmi Annabathuni University of Central Arkansas 400S Donaghey Ave, Apt#7 Conway, AR 72034 (845) 636-3443 lakshmiannabathuni@gmail.com Mark E. McMurtrey,

More information

Stock Market Prediction without Sentiment Analysis: Using a Web-traffic based Classifier and User-level Analysis

Stock Market Prediction without Sentiment Analysis: Using a Web-traffic based Classifier and User-level Analysis 2013 46th Hawaii International Conference on System Sciences Stock Market Prediction without Sentiment Analysis: Using a Web-traffic based Classifier and User-level Analysis Pierpaolo Dondio Dublin Institute

More information

Breaking News: The Influence of the Twitter Community on Investor Behaviour

Breaking News: The Influence of the Twitter Community on Investor Behaviour II Breaking News: The Influence of the Twitter Community on Investor Behaviour Bachelorarbeit zur Erlangung des akademischen Grades Bachelor of Science (B. Sc.) im Studiengang Wirtschaftsingenieur der

More information

Iran s Stock Market Prediction By Neural Networks and GA

Iran s Stock Market Prediction By Neural Networks and GA Iran s Stock Market Prediction By Neural Networks and GA Mahmood Khatibi MS. in Control Engineering mahmood.khatibi@gmail.com Habib Rajabi Mashhadi Associate Professor h_mashhadi@ferdowsi.um.ac.ir Electrical

More information

Text Analytics in Finance

Text Analytics in Finance Text Analytics in Finance Stephen Pulman Dept. of Computer Science, Oxford University stephen.pulman@cs.ox.ac.uk and TheySay Ltd, www.theysay.io @sgpulman SAP Central Bank Executive Summit Text Analytics

More information

Improving Long Term Stock Market Prediction with Text Analysis

Improving Long Term Stock Market Prediction with Text Analysis Western University Scholarship@Western Electronic Thesis and Dissertation Repository May 2017 Improving Long Term Stock Market Prediction with Text Analysis Tanner A. Bohn The University of Western Ontario

More information

Foreign Exchange Forecasting via Machine Learning

Foreign Exchange Forecasting via Machine Learning Foreign Exchange Forecasting via Machine Learning Christian González Rojas cgrojas@stanford.edu Molly Herman mrherman@stanford.edu I. INTRODUCTION The finance industry has been revolutionized by the increased

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

Pro Strategies Help Manual / User Guide: Last Updated March 2017

Pro Strategies Help Manual / User Guide: Last Updated March 2017 Pro Strategies Help Manual / User Guide: Last Updated March 2017 The Pro Strategies are an advanced set of indicators that work independently from the Auto Binary Signals trading strategy. It s programmed

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

Data Mining: A Closer Look. 2.1 Data Mining Strategies 8/30/2011. Chapter 2. Data Mining Strategies. Market Basket Analysis. Unsupervised Clustering

Data Mining: A Closer Look. 2.1 Data Mining Strategies 8/30/2011. Chapter 2. Data Mining Strategies. Market Basket Analysis. Unsupervised Clustering Data Mining: A Closer Look Chapter 2 2.1 Data Mining Strategies Data Mining Strategies Unsupervised Clustering Supervised Learning Market Basket Analysis Classification Estimation Prediction Figure 2.1

More information

Trading the Unexpected: Pattern Failures

Trading the Unexpected: Pattern Failures Trading the Unexpected: Pattern Failures December 16, 2013 Outline What does unexpected mean? The psychology of trading the unexpected Developing the mental skills to handle trading surprises Two ways

More information

Using Structured Events to Predict Stock Price Movement: An Empirical Investigation. Yue Zhang

Using Structured Events to Predict Stock Price Movement: An Empirical Investigation. Yue Zhang Using Structured Events to Predict Stock Price Movement: An Empirical Investigation Yue Zhang My research areas This talk Reading news from the Internet and predicting the stock market Outline Introduction

More information

Cross-section Study on Return of Stocks to. Future-expectation Theorem

Cross-section Study on Return of Stocks to. Future-expectation Theorem Cross-section Study on Return of Stocks to Future-expectation Theorem Yiqiao Yin B.A. Mathematics 14 and M.S. Finance 16 University of Rochester - Simon Business School Fall of 2015 Abstract This paper

More information

What Should the Fed Do?

What Should the Fed Do? Peterson Perspectives Interviews on Current Topics What Should the Fed Do? Joseph E. Gagnon and Michael Mussa discuss the latest steps by the Federal Reserve to help the economy and what tools might be

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

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

Don t Be a Stock Market Victim!

Don t Be a Stock Market Victim! Don t Be a Stock Market Victim! December 27, 2018 by Chuck Carnevale of F.A.S.T. Graphs Introduction The primary objective of this article is to help the reader put this recent bad market in perspective

More information

Impact of Unemployment and GDP on Inflation: Imperial study of Pakistan s Economy

Impact of Unemployment and GDP on Inflation: Imperial study of Pakistan s Economy International Journal of Current Research in Multidisciplinary (IJCRM) ISSN: 2456-0979 Vol. 2, No. 6, (July 17), pp. 01-10 Impact of Unemployment and GDP on Inflation: Imperial study of Pakistan s Economy

More information

DIGGING DEEPER INTO THE VOLATILITY ASPECTS OF AGRICULTURAL OPTIONS

DIGGING DEEPER INTO THE VOLATILITY ASPECTS OF AGRICULTURAL OPTIONS R.J. O'BRIEN ESTABLISHED IN 1914 DIGGING DEEPER INTO THE VOLATILITY ASPECTS OF AGRICULTURAL OPTIONS This article is a part of a series published by R.J. O Brien & Associates Inc. on risk management topics

More information

Practical Considerations for Building a D&O Pricing Model. Presented at Advisen s 2015 Executive Risk Insights Conference

Practical Considerations for Building a D&O Pricing Model. Presented at Advisen s 2015 Executive Risk Insights Conference Practical Considerations for Building a D&O Pricing Model Presented at Advisen s 2015 Executive Risk Insights Conference Purpose The intent of this paper is to provide some practical considerations when

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

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

Research Article Design and Explanation of the Credit Ratings of Customers Model Using Neural Networks

Research Article Design and Explanation of the Credit Ratings of Customers Model Using Neural Networks Research Journal of Applied Sciences, Engineering and Technology 7(4): 5179-5183, 014 DOI:10.1906/rjaset.7.915 ISSN: 040-7459; e-issn: 040-7467 014 Maxwell Scientific Publication Corp. Submitted: February

More information

Binary Options Trading Strategies How to Become a Successful Trader?

Binary Options Trading Strategies How to Become a Successful Trader? Binary Options Trading Strategies or How to Become a Successful Trader? Brought to You by: 1. Successful Binary Options Trading Strategy Successful binary options traders approach the market with three

More information

A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION

A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION A DECISION SUPPORT SYSTEM FOR HANDLING RISK MANAGEMENT IN CUSTOMER TRANSACTION K. Valarmathi Software Engineering, SonaCollege of Technology, Salem, Tamil Nadu valarangel@gmail.com ABSTRACT A decision

More information

Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns

Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns Backpropagation and Recurrent Neural Networks in Financial Analysis of Multiple Stock Market Returns Jovina Roman and Akhtar Jameel Department of Computer Science Xavier University of Louisiana 7325 Palmetto

More information

Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research

Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research Stock Market Forecast: Chaos Theory Revealing How the Market Works March 25, 2018 I Know First Research Stock Market Forecast : How Can We Predict the Financial Markets by Using Algorithms? Common fallacies

More information

Pitching IPOs. Exaggeration and the Marketing of Financial Securities

Pitching IPOs. Exaggeration and the Marketing of Financial Securities Pitching IPOs Exaggeration and the Marketing of Financial Securities Introduction This is a study of the marketing of financial securities in general, and IPOs in particular, looking at the initial wave

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

Forecasting stock market prices

Forecasting stock market prices ICT Innovations 2010 Web Proceedings ISSN 1857-7288 107 Forecasting stock market prices Miroslav Janeski, Slobodan Kalajdziski Faculty of Electrical Engineering and Information Technologies, Skopje, Macedonia

More information

THE CREDIT SCORING TOOLKIT: THEORY AND PRACTICE FOR RETAIL CREDIT RISK MANAGEMENT AND DECISION AUTOMATION BY RAYMOND ANDERSON

THE CREDIT SCORING TOOLKIT: THEORY AND PRACTICE FOR RETAIL CREDIT RISK MANAGEMENT AND DECISION AUTOMATION BY RAYMOND ANDERSON THE CREDIT SCORING TOOLKIT: THEORY AND PRACTICE FOR RETAIL CREDIT RISK MANAGEMENT AND DECISION AUTOMATION BY RAYMOND ANDERSON DOWNLOAD EBOOK : THE CREDIT SCORING TOOLKIT: THEORY AND PRACTICE FOR RETAIL

More information

Module 6 Portfolio risk and return

Module 6 Portfolio risk and return Module 6 Portfolio risk and return Prepared by Pamela Peterson Drake, Ph.D., CFA 1. Overview Security analysts and portfolio managers are concerned about an investment s return, its risk, and whether it

More information

Cross- Country Effects of Inflation on National Savings

Cross- Country Effects of Inflation on National Savings Cross- Country Effects of Inflation on National Savings Qun Cheng Xiaoyang Li Instructor: Professor Shatakshee Dhongde December 5, 2014 Abstract Inflation is considered to be one of the most crucial factors

More information

UNDERSTANDING ML/DL MODELS USING INTERACTIVE VISUALIZATION TECHNIQUES

UNDERSTANDING ML/DL MODELS USING INTERACTIVE VISUALIZATION TECHNIQUES UNDERSTANDING ML/DL MODELS USING INTERACTIVE VISUALIZATION TECHNIQUES Chakri Cherukuri Senior Researcher Quantitative Financial Research Group 1 OUTLINE Introduction Applied machine learning in finance

More information

Interpreting The Relationship Between Implied And. Historical Volatility Through Sentiment Analysis. Qinmei Chen

Interpreting The Relationship Between Implied And. Historical Volatility Through Sentiment Analysis. Qinmei Chen Interpreting The Relationship Between Implied And Historical Volatility Through Sentiment Analysis by Qinmei Chen Chen 1 An honors thesis submitted in partial fulfillment of the requirements for the degree

More information

Presenter: And Paul, you've been quite vocal on the inadequacies of the SRRI calculation.

Presenter: And Paul, you've been quite vocal on the inadequacies of the SRRI calculation. Morningstar - KIID Key Investor Information Document - KIID Paul Kaplan, Jeff Strazis & Neil Simmonds Presenter: I'm joined now by Neil Simmonds, Partner at Simmons & Simmons, Dr Paul Kaplan, Director

More information

WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing

WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing WIN NEW CLIENTS & INCREASE WALLET-SHARE with HiddenLevers Engaging prospects + clients with portfolio stress testing TABLE OF CONTENTS INTRO: How it works 3 ONE: Introduce and position risk at the first

More information

The analysis of credit scoring models Case Study Transilvania Bank

The analysis of credit scoring models Case Study Transilvania Bank The analysis of credit scoring models Case Study Transilvania Bank Author: Alexandra Costina Mahika Introduction Lending institutions industry has grown rapidly over the past 50 years, so the number of

More information

Kingdom of Saudi Arabia Capital Market Authority. Investment

Kingdom of Saudi Arabia Capital Market Authority. Investment Kingdom of Saudi Arabia Capital Market Authority Investment The Definition of Investment Investment is defined as the commitment of current financial resources in order to achieve higher gains in the

More information

Machine Learning in Risk Forecasting and its Application in Low Volatility Strategies

Machine Learning in Risk Forecasting and its Application in Low Volatility Strategies NEW THINKING Machine Learning in Risk Forecasting and its Application in Strategies By Yuriy Bodjov Artificial intelligence and machine learning are two terms that have gained increased popularity within

More information

Measurable value creation through an advanced approach to ERM

Measurable value creation through an advanced approach to ERM Measurable value creation through an advanced approach to ERM Greg Monahan, SOAR Advisory Abstract This paper presents an advanced approach to Enterprise Risk Management that significantly improves upon

More information

IN traditional finance, the efficient market hypothesis states

IN traditional finance, the efficient market hypothesis states IEEE TRANSACTIONS ON KNOWLEDGE AND DATA ENGINEERING, VOL. 30, NO. 2, FEBRUARY 2018 381 Web Media and Stock Markets : A Survey and Future Directions from a Big Data Perspective Qing Li, Member, IEEE, Yan

More information

Phase III Statewide Evaluation Team. Addendum to Act 129 Home Energy Report Persistence Study

Phase III Statewide Evaluation Team. Addendum to Act 129 Home Energy Report Persistence Study Phase III Statewide Evaluation Team Addendum to Act 129 Home Energy Report Persistence Study Prepared by: Adriana Ciccone and Jesse Smith Phase III Statewide Evaluation Team November 2018 TABLE OF CONTENTS

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

FUZZY LOGIC INVESTMENT SUPPORT ON THE FINANCIAL MARKET

FUZZY LOGIC INVESTMENT SUPPORT ON THE FINANCIAL MARKET FUZZY LOGIC INVESTMENT SUPPORT ON THE FINANCIAL MARKET Abstract: This paper discusses the use of fuzzy logic and modeling as a decision making support for long-term investment decisions on financial markets.

More information

Global population projections by the United Nations John Wilmoth, Population Association of America, San Diego, 30 April Revised 5 July 2015

Global population projections by the United Nations John Wilmoth, Population Association of America, San Diego, 30 April Revised 5 July 2015 Global population projections by the United Nations John Wilmoth, Population Association of America, San Diego, 30 April 2015 Revised 5 July 2015 [Slide 1] Let me begin by thanking Wolfgang Lutz for reaching

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

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

CABARRUS COUNTY 2008 APPRAISAL MANUAL

CABARRUS COUNTY 2008 APPRAISAL MANUAL STATISTICS AND THE APPRAISAL PROCESS PREFACE Like many of the technical aspects of appraising, such as income valuation, you have to work with and use statistics before you can really begin to understand

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

KYC Automation: Scale, Speed, Standardize Merchant Underwriting

KYC Automation: Scale, Speed, Standardize Merchant Underwriting Know Your Customer (KYC) KYC Automation: Scale, Speed, Standardize Merchant Underwriting Visit www.macmember.org to join in MAC Benefits include: Protect and invest in your organization by receiving fraud

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

A TEMPORAL PATTERN APPROACH FOR PREDICTING WEEKLY FINANCIAL TIME SERIES

A TEMPORAL PATTERN APPROACH FOR PREDICTING WEEKLY FINANCIAL TIME SERIES A TEMPORAL PATTERN APPROACH FOR PREDICTING WEEKLY FINANCIAL TIME SERIES DAVID H. DIGGS Department of Electrical and Computer Engineering Marquette University P.O. Box 88, Milwaukee, WI 532-88, USA Email:

More information

As our brand migration will be gradual, you will see traces of our past through documentation, videos, and digital platforms.

As our brand migration will be gradual, you will see traces of our past through documentation, videos, and digital platforms. We are now Refinitiv, formerly the Financial and Risk business of Thomson Reuters. We ve set a bold course for the future both ours and yours and are introducing our new brand to the world. As our brand

More information

Innealta AN OVERVIEW OF THE MODEL COMMENTARY: JUNE 1, 2015

Innealta AN OVERVIEW OF THE MODEL COMMENTARY: JUNE 1, 2015 Innealta C A P I T A L COMMENTARY: JUNE 1, 2015 AN OVERVIEW OF THE MODEL As accessible as it is powerful, and as timely as it is enduring, the Innealta Tactical Asset Allocation (TAA) model, we believe,

More information

Chapter 5. Forecasting. Learning Objectives

Chapter 5. Forecasting. Learning Objectives Chapter 5 Forecasting To accompany Quantitative Analysis for Management, Eleventh Edition, by Render, Stair, and Hanna Power Point slides created by Brian Peterson Learning Objectives After completing

More information

Stock Price Prediction Using Neural Network Models Based on Tweets Sentiment Scores

Stock Price Prediction Using Neural Network Models Based on Tweets Sentiment Scores Journal of Computer Sciences and Applications, 2017, Vol. 5, No. 2, 64-75 Available online at http://pubs.sciepub.com/jcsa/5/2/3 Science and Education Publishing DOI:10.12691/jcsa-5-2-3 Stock Price Prediction

More information

Predictability Using Big Data. Discussion by Sanjiv R Das Santa Clara University

Predictability Using Big Data. Discussion by Sanjiv R Das Santa Clara University Predictability Using Big Data Discussion by Sanjiv R Das Santa Clara University Levels of Dependence Prediction Causality Sentiment Scoring Loughran and McDonald JF 2011 word lists F in- Neg negative words

More information

Modelling of selected S&P 500 share prices

Modelling of selected S&P 500 share prices MPRA Munich Personal RePEc Archive Modelling of selected S&P 5 share prices Ivan Kitov and Oleg Kitov IDG RAS 22. June 29 Online at http://mpra.ub.uni-muenchen.de/15862/ MPRA Paper No. 15862, posted 22.

More information

Is there a decoupling between soft and hard data? The relationship between GDP growth and the ESI

Is there a decoupling between soft and hard data? The relationship between GDP growth and the ESI Fifth joint EU/OECD workshop on business and consumer surveys Brussels, 17 18 November 2011 Is there a decoupling between soft and hard data? The relationship between GDP growth and the ESI Olivier BIAU

More information

Chapter 4 Research Methodology

Chapter 4 Research Methodology Chapter 4 Research Methodology 4.1 Introduction An exchange rate (also known as a foreign-exchange rate, forex rate, FX rate or Agio) between two currencies is the rate at which one currency will be exchanged

More information

Validation of Nasdaq Clearing Models

Validation of Nasdaq Clearing Models Model Validation Validation of Nasdaq Clearing Models Summary of findings swissquant Group Kuttelgasse 7 CH-8001 Zürich Classification: Public Distribution: swissquant Group, Nasdaq Clearing October 20,

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

Improving Stock Price Prediction with SVM by Simple Transformation: The Sample of Stock Exchange of Thailand (SET)

Improving Stock Price Prediction with SVM by Simple Transformation: The Sample of Stock Exchange of Thailand (SET) Thai Journal of Mathematics Volume 14 (2016) Number 3 : 553 563 http://thaijmath.in.cmu.ac.th ISSN 1686-0209 Improving Stock Price Prediction with SVM by Simple Transformation: The Sample of Stock Exchange

More information

Deep Learning - Financial Time Series application

Deep Learning - Financial Time Series application Chen Huang Deep Learning - Financial Time Series application Use Deep learning to learn an existing strategy Warning Don t Try this at home! Investment involves risk. Make sure you understand the risk

More information

UPDATED IAA EDUCATION SYLLABUS

UPDATED IAA EDUCATION SYLLABUS II. UPDATED IAA EDUCATION SYLLABUS A. Supporting Learning Areas 1. STATISTICS Aim: To enable students to apply core statistical techniques to actuarial applications in insurance, pensions and emerging

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

PAPER No.14 : Security Analysis and Portfolio Management MODULE No.24 : Efficient market hypothesis: Weak, semi strong and strong market)

PAPER No.14 : Security Analysis and Portfolio Management MODULE No.24 : Efficient market hypothesis: Weak, semi strong and strong market) Subject Paper No and Title Module No and Title Module Tag 14. Security Analysis and Portfolio M24 Efficient market hypothesis: Weak, semi strong and strong market COM_P14_M24 TABLE OF CONTENTS After going

More information

Are New Modeling Techniques Worth It?

Are New Modeling Techniques Worth It? Are New Modeling Techniques Worth It? Tom Zougas PhD PEng, Manager Data Science, TransUnion TORONTO SAS USER GROUP MAY 2, 2018 Are New Modeling Techniques Worth It? Presenter Tom Zougas PhD PEng, Manager

More information

Does my beta look big in this?

Does my beta look big in this? Does my beta look big in this? Patrick Burns 15th July 2003 Abstract Simulations are performed which show the difficulty of actually achieving realized market neutrality. Results suggest that restrictions

More information

Using Sentiment Analysis & Machine Learning for Security Price Forecasting

Using Sentiment Analysis & Machine Learning for Security Price Forecasting Using Sentiment Analysis & Machine Learning for Security Price Forecasting Thesis submitted in partial fulfilment of the requirement for the degree of Bachelor of Science In Computer Science Under the

More information