An introduction to Machine learning methods and forecasting of time series in financial markets

Size: px
Start display at page:

Download "An introduction to Machine learning methods and forecasting of time series in financial markets"

Transcription

1 An introduction to Machine learning methods and forecasting of time series in financial markets Mark Wong December 10, 2016 Abstract The goal of this paper is to give the reader an introduction to basic Machine learning methods and its use in financial markets, more specifically predicting future time series of stocks and indices. This paper then presents the findings of papers that have implemented these methods in terms of result, performance and reliability. The findings are then critically discussed and and the conclusion is that there exists some proof for prediction of time series for stocks and indices for certain industries. In a real life application, factors such as transaction costs would heavily affect the success of using these methods. Thus, the author concludes that the methods do not beat a buy and hold strategy meaning that there exists support for the EMH [7]. 1

2 CONTENTS DD1395 Contents 1 Terminology 3 2 Introduction Machine learning Financial market Purpose 4 4 Method Financial markets Machine learning algorithms Decision Trees Support Vector Machines (SVM) Support Vector Regression (SVR) Experiments and results 7 6 Discussion 9 2

3 1 Terminology DD Terminology MA-50: The mean of the price of a stock/index for the past 50 trading days. MA-200: The mean of the price of a stock/index for the past 200 trading days. RSI: A technical indicator intended to show current and historical strength of a stock/index. EMH: Investment theory that states that stocks/indices price always fully reflect all available information. This implies that it is impossible to beat the market. [7] OBX: The OBX Index is a stock market index which lists the 25 most liquid companies on the main index of the Oslo Stock Exchange in Norway DOW: The DOW Index is a stock market index which lists the 30 most liquid companies on the main index of the New York Stock Exchange in the United States. TAIEX: The TAIEX Index is a stock market index which lists all the companies on the main index of the Taiwan Stock Exchange in Taiwan. S&P500: The S&P500 Index is a stock market index which lists the 500 largest companies on the main index of the New York Stock Exchange in the United States. 3

4 2 Introduction DD Introduction Being able to predict the future is something that has always fascinated mankind. Since the inception of the digital era scientists have researched the possibility of building Artificial Intelligence (AI). The definition of the term has undergone changes since its birth. Informally AI has from a layman s perspective been seen as a robot machine that is able to mimic the behaviour of humans in terms of knowledge and to some degree self-awareness. The AI that many scientists today focus on is building a machine that based on a source takes actions that maximizes a goal function. Depending on the goal, the actions taken differ. 2.1 Machine learning Machine learning (ML) on the other hand is a field in computer science and is also a subset of Artificial Intelligence. To get a grasp of what machine learning is, one can think of it as the practice of getting a computer to make rational guesses without having seen the question before by feeding it similar questions before with the corresponding answer. This type of task is called supervised learning and is one of the three categories that ML typically is classified into [5]. The other two categories are unsupervised learning and reinforcement learning that this paper will not touch. The use of machine learning in our society is widespread and has its use in all kind of fields. A few examples where machine learning techniques are used and relied on are insurance companies, medical facilities, services and economics. In the insurance field it can be used to detect fraudulent behaviour by detecting anomalies. In medical facilities it can assist medical personell to detect diseases before symptoms appear. In services it can help detect unwanted spam s. Lastly in economics it can be used for forecasting prices and simulating/assessing performance and risk. 2.2 Financial market A financial market is a trading place in which people exchange equities, financial instruments such as futures, commodities and bonds (ETF). A trade has two counterparties and is priced at a level that both sides settle on. As the financial markets operate in real time, the trade price is effectively based on the current supply and demand. Efficient market hypothesis (EMH) states that the price of an asset fully reflect all available information. This implies that the future stock price is completely unpredictable and independent given previous trading history of the stock [7]. 3 Purpose With the increasing computational power and storage possibilities and decrease in computational cost we have never had a better opportunity to use the big data that is out there for forecasting with machine learning methods. The purpose of this paper is to delve into how ML methods are used in the financial markets and how successful it is compared to traditional strategies. In other words this paper will investigate if there is any support for the EMH. 4

5 4 Method DD Method The author has an academic background in Machine Learning and some basic knowledge in financial markets. The author has furthered his knowledge in both areas and how it can be used by reading course literature from the Machine Learning courses at KTH and further combining them by pre-existing journal articles and scientific papers. All results are based on scientific experiments conducted by authors referenced in this paper. Conclusions made in this paper are based both on the authors own analysis but also the underlying papers conclusions. 4.1 Financial markets The financial markets this paper will investigate is primarily the stock market. A stock in a company represents an ownership in the equity of the company. The stock market is a public market for trading stocks for companies that are listed in the market. As the value of a company fluctuates with time depending on factors as how well they generate revenue, at what rate the economic growth is increasing etc. it will naturally effect the value of its stock. This paper will partly investigate how well we can model the history to be able to predict future the time-series of the price of a stock using Machine learning. It will also take in to consideration the risk factor where a low-risk/high-return is preferred over a high-risk/high-return result. 4.2 Machine learning algorithms As previously mentioned this paper will only discuss supervised learning methods. In essence supervised learning is the process of trying to estimate some unknown feature associated with a data point [1]. This data point is typically represented in a high dimensional space and is a combination of all the features we deem are relevant for a data point. In the learning phase we have a data set with data points and their corresponding label that the model later use to base its classification or regression output Decision Trees Decision trees is a method that can be both be applied to classification and regression problems. It is commonly used in more basic scenarios due to it being intuitive to construct and read, and for its simplistic tree-structure. The idea behind Decision trees is that we construct a tree data structure with decisions/splits based on a criteria at every node until we reach a leaf. When constructing a Decision tree one would like to identify the attributes that increases the information gain. Before we move on to information gain I must mention that entropy in this field is a measure of uncertainty. The entropy can be given as: Ent = p i log 2 p i (1) i where i is the number of different outputs and p i is the probability of that output occurring. To maximize information we would naturally like to reduce the uncertainty and this is can done by choosing an attribute A such that the entropy of the 5

6 4 Method DD1395 data set prior to the split is greater than after the split. In other words we would like to utilise an attribute which will give us the greatest gain: Gain = Ent(S) v V alues(a) S v S Ent(S v) (2) where S is a dataset and A is the attribute we want to calculate the gain in entropy for. An fictive example of how it can be used for a binary classification problem where we would like to know if a stock s trading price will increase or decrease is given in the figure 1: Figure 1: Decision tree showing splits and classifications. In this example we split on the decisions whether: the MA-50 of the stock price has crossed the MA-200 the average trading volume is greater than USD the RSI Index is greater than Support Vector Machines (SVM) Support Vector Machines is a Machine Learning method developed in the 1990s used for binary classification problems [5]. Given labeled training data the SVM algorithm first transforms the data points into high-dimensional space [2]. This step is crucial as the data needs to be linearly separable for there to exist a hyperplane that separates our data. SVM then aims to create a hyperplane or a set of hyperplanes in high dimensional space so that it separates clusters of data points belonging to the corresponding class. The parameters that make up the hyperplane is given by maximizing the margin from the hyperplane to the two data clusters [1]. Some variations of SVM allow less strict margins in the sense that it allows some overlap between the data clusters. [5] Since we usually operate in high-dimensional space we need a computationally efficient and moderately accurate way to compute the similarity between a new data point and the existing data points in the SVM. Using kernel functions is the most common way to bypass the high-dimensional computations [8]. 6

7 5 Experiments and results DD1395 The idea behind kernels is to compute the scalar product between two points in low-dimensional space. Depending on the complexity of the data set different kernel functions are suitable. Two of the most commonly used kernel functions are the linear kernel and radial kernel. K( x, y) = x T y + 1 (3) K( x, y) = e ( x y) 2 2σ 2 (4) In figure 2 and 3 we have examples of two support vector machines using different kernel functions with their corresponding hyperplane(s) and margins: Figure 2: Linear kernel Figure 3: Radial kernel Support Vector Regression (SVR) Support Vector Regression is an alternative variant to SVM but is instead used for regression. The same ideas apply but instead of returning a classification the actual hyperplane(s) is/are returned [10]. 5 Experiments and results In [1] the authors created a series of trading systems using various Machine Learning techniques. Two of the techniques used were SVM and SVR which were tested on a dataset from the Dow Jones Industrial Average (DOW) and the Oslo Stock Exchange (OBX). The DOW index is one of the most stable and efficient indices in the world [4]. For the DOW dataset it included the index value as well as all the companies listed in the with their corresponding price per stock between year 2000 to For the OBX dataset it included the same type of data but only for from year 2006 to These two datasets where split in separate sets of data. The training set was set as the first 50 days. The model would after that try to predict the next day s price for the index and stock price. On day 51 it would then use data from day 2 to day 51 to predict day 52 and so on. To be able to compare the result they used a buy-and-hold strategy as benchmark meaning that they simulated a portfolio consisting of N shares in the corresponding index with 1/N weight each. 7

8 5 Experiments and results DD1395 The authors found that when including the transaction cost of a trade none of the techniques used achieved greater returns compared to the benchmark portfolio or a fund mirroring the corresponding index achieved. When the transaction cost for a trade was disregarded the authors noticed that the techniques applied performed differently in the OBX and DOW data set. In the OBX result both the SVM and SVR delievered cumulative returns that surpassed the benchmark. The SVR also dominated the other techniques in terms of risk-adjusted returns. In the DOW result no technique were able to surpass the benchmark. In [11] the authors have performed similar experiments on the Taiwan stock index (TAIEX), which is a very IT/electronics dominated index. The authors have included ANN or artifical neural networks which is a machine learning method created in 1943 inspired by the human nervous system [5]. This paper will assume prior knowledge of the basics in ANN. The authors have compared four different methods/hybrid-methods: ANN, decision trees, ANN combined with decision trees and two decision trees combined. The data set they used contained all public data including price, financial reports etc. of the companies included in TAIEX and ranged from year 2002 to mid They used 80% of the data as training data and the remainder as test data. After training each method they evaluated the method in terms of prediction accuracy, Type-I & Type-II errors. The Type-I error means that the model predicted increase but the stock decreased. Type-II error means that the model predicted decrease but the stock increased. Neither one of these error are desirable but a high percentage of Type-I error is more serious in terms of the end result. Method Type-I Type-II ANN 49.5% 43.7% DT 87.1% 21.4% DT+ANN 71.9% 1.95% DT+DT 88.4% 6.64% Table 1: Type-I and Type-II errors for each method. In terms of prediction accuracy the following was the result for each method tested: Method Prediction accuracy ANN % DT % DT+ANN % DT+DT % Table 2: Prediction accuracy for each method. In [6] they conducted an experiment with involving SVM and evaluated the prediction accuracy. This experiment was run on the Standard & Poor 500 index (S&P500) with stock data from year 2000 to March The major difference in this paper from the previous papers was that the they used five different time aspects as training data. The algorithm used 2,3,5,10, and 30 8

9 6 Discussion DD1395 previous trading days as training data. In terms to the prediction accuracy the SVM had the following accuracy for the different time aspects: Days looking backward Prediction accuracy % % % % % Table 3: Prediction accuracy for time aspects ranging from 2,3,5,10 or 30 days. From table 3 we can see that the prediction accuracy tends to increase when we increase the number of previous days we use. 6 Discussion All the papers investigated used a combination of different methods and had different data sets. The quality of the experiments differed greatly as well. For example [1] was the only authors who took transaction cost in consideration. Since the other papers did not mention the transaction cost I assume that this was neglected. Given that the transaction cost had an impact in [1] experiment and affected the return of the methods one should note that the effect is most likely similar in [6] and [11]. In [1] the authors noticed a difference in performance for the OBX and DOW data set which could be due to difference in transaction costs as they operate in different countries. It could also be due to the difference in time periods as the training data used in the DOW was a period where the whole index decreased 30% while the training data in the OBX was a period where the index increased 35%. As the benchmark portolio performed better than both the SVM and SVR including the transaction cost we can say that the [1] experiment strengthens the EMH. In [11] the DT+ANN method showed promising prediction accuracy. The authors reported a prediction accuracy of % which is very impressive. An explanation for this could be that the TAIEX index used in the experiment is a smaller index compared to the DOW and OBX. The TAIEX is also largely composed by a single industry. Since the success of the DT and DT+ANN methods relies heavily on making the best splits in the tree it is easier to make favorable splits if the companies in the index are similar. As the authors mention in the discussion a future extensions that would strengthen their findings and conclusions would be to include more methods and use a data set that is less homogeneous in terms of size and industries. In [6] they evaluated the performance of SVM in terms of prediction accuracy. The trend we can see is that the prediction accuracy tends to increase when the number of previous days are increased, with the exception of 10 days where the accuracy drops. Given the hypothesis that there is a trend and connection in the stock market I believe it makes sense that the prediction accuracy should 9

10 6 Discussion DD1395 increase when we observe more data (up to a certain limit, as too many days in the data could make the model disregard trends). The most surprising result is that the prediction accuracy of 2 days and 30 days only differs % which is objectively an improvement, albeit a small one. To be able to evaluate the result we need to compare it with some benchmark. Given that a uniform random classifier should in theory result in 50% prediction accuracy (predicting increase or decrease is a binary decision problem) and that the prediction accuracy of SVM lies in the range of % %, I believe it is fair to conclude that the SVM used in the paper was not very effective. 10

11 REFERENCES DD1395 References [1] A.-C Andersen and Mikelsen S. A Novel Algorithmic Trading Framework Applying Evolution and Machine Learning for Portfolio Optimization [2] M Atsuto. Decision Trees, Support Vector Machines [3] C Bishop. Pattern recognition and machine learning. Springer Science, [4] R Edelman. The truth about money. Rodale, [5] G James et al. An introduction to statistical learning. Vol. 6. Springer, [6] G Kihlström and P Przybysz. Technical Analysis inspired Machine Learning for Stock Market Data. Royal Institute of Technology, [7] B-G Malkiel. Efficient market hypothesis. In: The World of Economics. Springer, 1991, pp [8] B Schölkopf and A-J Smola. Learning with kernels: support vector machines, regularization, optimization, and beyond. MIT press, [9] V Sha. Machine Learning Techniques for Stock Prediction Vatsal H. Shah. In: (2007). [10] A-J Smola and B Schölkopf. A tutorial on support vector regression. In: Statistics and computing 14.3 (2004), pp [11] C.-F Tsai and S.-P Wang. Stock Price Forecasting by Hybrid Machine Learning Techniques. In: Proceedings of the International MultiConference of Engineers and Computer Scientists (2009). 11

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

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

Relative and absolute equity performance prediction via supervised learning

Relative and absolute equity performance prediction via supervised learning Relative and absolute equity performance prediction via supervised learning Alex Alifimoff aalifimoff@stanford.edu Axel Sly axelsly@stanford.edu Introduction Investment managers and traders utilize two

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 2, Mar Apr 2017

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 2, Mar Apr 2017 RESEARCH ARTICLE Stock Selection using Principal Component Analysis with Differential Evolution Dr. Balamurugan.A [1], Arul Selvi. S [2], Syedhussian.A [3], Nithin.A [4] [3] & [4] Professor [1], Assistant

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

Predicting the Success of a Retirement Plan Based on Early Performance of Investments

Predicting the Success of a Retirement Plan Based on Early Performance of Investments Predicting the Success of a Retirement Plan Based on Early Performance of Investments CS229 Autumn 2010 Final Project Darrell Cain, AJ Minich Abstract Using historical data on the stock market, it is possible

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

Examining Long-Term Trends in Company Fundamentals Data

Examining Long-Term Trends in Company Fundamentals Data Examining Long-Term Trends in Company Fundamentals Data Michael Dickens 2015-11-12 Introduction The equities market is generally considered to be efficient, but there are a few indicators that are known

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

Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often

Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often Abstract Making good predictions for stock prices is an important task for the financial industry. The way these predictions are carried out is often by using artificial intelligence that can learn from

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

Data Adaptive Stock Recommendation

Data Adaptive Stock Recommendation IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Volume 13, PP 06-10 www.iosrjen.org Data Adaptive Stock Recommendation Mayank H. Mehta 1, Kamakshi P. Banavalikar 2, Jigar

More information

Predicting Market Fluctuations via Machine Learning

Predicting Market Fluctuations via Machine Learning Predicting Market Fluctuations via Machine Learning Michael Lim,Yong Su December 9, 2010 Abstract Much work has been done in stock market prediction. In this project we predict a 1% swing (either direction)

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

Automated Options Trading Using Machine Learning

Automated Options Trading Using Machine Learning 1 Automated Options Trading Using Machine Learning Peter Anselmo and Karen Hovsepian and Carlos Ulibarri and Michael Kozloski Department of Management, New Mexico Tech, Socorro, NM 87801, U.S.A. We summarize

More information

Applications of Neural Networks in Stock Market Prediction

Applications of Neural Networks in Stock Market Prediction Applications of Neural Networks in Stock Market Prediction -An Approach Based Analysis Shiv Kumar Goel 1, Bindu Poovathingal 2, Neha Kumari 3 1Asst. Professor, Vivekanand Education Society Institute of

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

ECS171: Machine Learning

ECS171: Machine Learning ECS171: Machine Learning Lecture 15: Tree-based Algorithms Cho-Jui Hsieh UC Davis March 7, 2018 Outline Decision Tree Random Forest Gradient Boosted Decision Tree (GBDT) Decision Tree Each node checks

More information

Application of Support Vector Machine in Predicting the Market's Monthly Trend Direction

Application of Support Vector Machine in Predicting the Market's Monthly Trend Direction Portland State University PDXScholar Dissertations and Theses Dissertations and Theses Fall 12-10-2013 Application of Support Vector Machine in Predicting the Market's Monthly Trend Direction Ali Alali

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

The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index

The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index The Use of Artificial Neural Network for Forecasting of FTSE Bursa Malaysia KLCI Stock Price Index Soleh Ardiansyah 1, Mazlina Abdul Majid 2, JasniMohamad Zain 2 Faculty of Computer System and Software

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

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

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

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

Do Trading Volume and MACD Indicator Contains Information Content of Stock Price? Evidence from China

Do Trading Volume and MACD Indicator Contains Information Content of Stock Price? Evidence from China JOURNAL OF SIMULATION, VOL. 6, NO. 4, Aug. 2018 71 Do Trading Volume and MACD Indicator Contains Information Content of Stock Price? Evidence from China 2014-2015 Pinglin He a, Zheyu Pan * School of Economics

More information

Naïve Bayesian Classifier and Classification Trees for the Predictive Accuracy of Probability of Default Credit Card Clients

Naïve Bayesian Classifier and Classification Trees for the Predictive Accuracy of Probability of Default Credit Card Clients American Journal of Data Mining and Knowledge Discovery 2018; 3(1): 1-12 http://www.sciencepublishinggroup.com/j/ajdmkd doi: 10.11648/j.ajdmkd.20180301.11 Naïve Bayesian Classifier and Classification Trees

More information

An Intelligent Approach for Option Pricing

An Intelligent Approach for Option Pricing IOSR Journal of Economics and Finance (IOSR-JEF) e-issn: 2321-5933, p-issn: 2321-5925. PP 92-96 www.iosrjournals.org An Intelligent Approach for Option Pricing Vijayalaxmi 1, C.S.Adiga 1, H.G.Joshi 2 1

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

Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis

Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis WCCI 202 IEEE World Congress on Computational Intelligence June, 0-5, 202 - Brisbane, Australia IEEE CEC Using Sector Information with Linear Genetic Programming for Intraday Equity Price Trend Analysis

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

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

Forecasting Agricultural Commodity Prices through Supervised Learning

Forecasting Agricultural Commodity Prices through Supervised Learning Forecasting Agricultural Commodity Prices through Supervised Learning Fan Wang, Stanford University, wang40@stanford.edu ABSTRACT In this project, we explore the application of supervised learning techniques

More information

Session 5. Predictive Modeling in Life Insurance

Session 5. Predictive Modeling in Life Insurance SOA Predictive Analytics Seminar Hong Kong 29 Aug. 2018 Hong Kong Session 5 Predictive Modeling in Life Insurance Jingyi Zhang, Ph.D Predictive Modeling in Life Insurance JINGYI ZHANG PhD Scientist Global

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

Performance analysis of Neural Network Algorithms on Stock Market Forecasting

Performance analysis of Neural Network Algorithms on Stock Market Forecasting www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 3 Issue 9 September, 2014 Page No. 8347-8351 Performance analysis of Neural Network Algorithms on Stock Market

More information

Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science

Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science Besting Dollar Cost Averaging Using A Genetic Algorithm A Master of Science Thesis Proposal For Applied Physics and Computer Science By James Maxlow Christopher Newport University October, 2003 Approved

More information

APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK EXCHANGE

APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK EXCHANGE QUANTITATIVE METHODS IN ECONOMICS Vol. XV, No. 2, 2014, pp. 307 316 APPLICATION OF ARTIFICIAL NEURAL NETWORK SUPPORTING THE PROCESS OF PORTFOLIO MANAGEMENT IN TERMS OF TIME INVESTMENT ON THE WARSAW STOCK

More information

State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking

State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking Timothy Little, Xiao-Ping Zhang Dept. of Electrical and Computer Engineering Ryerson University 350 Victoria

More information

Prediction Using Back Propagation and k- Nearest Neighbor (k-nn) Algorithm

Prediction Using Back Propagation and k- Nearest Neighbor (k-nn) Algorithm Prediction Using Back Propagation and k- Nearest Neighbor (k-nn) Algorithm Tejaswini patil 1, Karishma patil 2, Devyani Sonawane 3, Chandraprakash 4 Student, Dept. of computer, SSBT COET, North Maharashtra

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

Understanding neural networks

Understanding neural networks Machine Learning Neural Networks Understanding neural networks An Artificial Neural Network (ANN) models the relationship between a set of input signals and an output signal using a model derived from

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

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

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

$tock Forecasting using Machine Learning

$tock Forecasting using Machine Learning $tock Forecasting using Machine Learning Greg Colvin, Garrett Hemann, and Simon Kalouche Abstract We present an implementation of 3 different machine learning algorithms gradient descent, support vector

More information

ScienceDirect. Detecting the abnormal lenders from P2P lending data

ScienceDirect. Detecting the abnormal lenders from P2P lending data Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 91 (2016 ) 357 361 Information Technology and Quantitative Management (ITQM 2016) Detecting the abnormal lenders from P2P

More information

Research on System Dynamic Modeling and Simulation of Chinese Supply Chain Financial Credit Risk from the Perspective of Cooperation

Research on System Dynamic Modeling and Simulation of Chinese Supply Chain Financial Credit Risk from the Perspective of Cooperation 2017 3rd International Conference on Innovation Development of E-commerce and Logistics (ICIDEL 2017) Research on System Dynamic Modeling and Simulation of Chinese Supply Chain Financial Credit Risk from

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

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

Application of Support Vector Machine on Algorithmic Trading

Application of Support Vector Machine on Algorithmic Trading 400 Int'l Conf. Artificial Intelligence ICAI'18 Application of Support Vector Machine on Algorithmic Trading Szklarz J 1., Rosillo R 2., Alvarez N 2., Fernández I 2., and Garcia N 2. 1 Programmer, Izertis

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

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

STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION

STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION STOCK PRICE PREDICTION: KOHONEN VERSUS BACKPROPAGATION Alexey Zorin Technical University of Riga Decision Support Systems Group 1 Kalkyu Street, Riga LV-1658, phone: 371-7089530, LATVIA E-mail: alex@rulv

More information

An Algorithm for Trading and Portfolio Management Using. strategy. Since this type of trading system is optimized

An Algorithm for Trading and Portfolio Management Using. strategy. Since this type of trading system is optimized pp 83-837,. An Algorithm for Trading and Portfolio Management Using Q-learning and Sharpe Ratio Maximization Xiu Gao Department of Computer Science and Engineering The Chinese University of HongKong Shatin,

More information

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

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

Multi-factor Stock Selection Model Based on Kernel Support Vector Machine

Multi-factor Stock Selection Model Based on Kernel Support Vector Machine Journal of Mathematics Research; Vol. 10, No. 5; October 2018 ISSN 1916-9795 E-ISSN 1916-9809 Published by Canadian Center of Science and Education Multi-factor Stock Selection Model Based on Kernel Support

More information

Lending Club Loan Portfolio Optimization Fred Robson (frobson), Chris Lucas (cflucas)

Lending Club Loan Portfolio Optimization Fred Robson (frobson), Chris Lucas (cflucas) CS22 Artificial Intelligence Stanford University Autumn 26-27 Lending Club Loan Portfolio Optimization Fred Robson (frobson), Chris Lucas (cflucas) Overview Lending Club is an online peer-to-peer lending

More information

Academic Research Review. Algorithmic Trading using Neural Networks

Academic Research Review. Algorithmic Trading using Neural Networks Academic Research Review Algorithmic Trading using Neural Networks EXECUTIVE SUMMARY In this paper, we attempt to use a neural network to predict opening prices of a set of equities which is then fed into

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

Chapter IV. Forecasting Daily and Weekly Stock Returns

Chapter IV. Forecasting Daily and Weekly Stock Returns Forecasting Daily and Weekly Stock Returns An unsophisticated forecaster uses statistics as a drunken man uses lamp-posts -for support rather than for illumination.0 Introduction In the previous chapter,

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

Shynkevich, Y, McGinnity, M, Coleman, S, Belatreche, A and Li, Y

Shynkevich, Y, McGinnity, M, Coleman, S, Belatreche, A and Li, Y Forecasting price movements using technical indicators : investigating the impact of varying input window length Shynkevich, Y, McGinnity, M, Coleman, S, Belatreche, A and Li, Y http://dx.doi.org/10.1016/j.neucom.2016.11.095

More information

Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization

Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization 2017 International Conference on Materials, Energy, Civil Engineering and Computer (MATECC 2017) Neural Network Prediction of Stock Price Trend Based on RS with Entropy Discretization Huang Haiqing1,a,

More information

Stock market price index return forecasting using ANN. Gunter Senyurt, Abdulhamit Subasi

Stock market price index return forecasting using ANN. Gunter Senyurt, Abdulhamit Subasi Stock market price index return forecasting using ANN Gunter Senyurt, Abdulhamit Subasi E-mail : gsenyurt@ibu.edu.ba, asubasi@ibu.edu.ba Abstract Even though many new data mining techniques have been introduced

More information

THE investment in stock market is a common way of

THE investment in stock market is a common way of PROJECT REPORT, MACHINE LEARNING (COMP-652 AND ECSE-608) MCGILL UNIVERSITY, FALL 2018 1 Comparison of Different Algorithmic Trading Strategies on Tesla Stock Price Tawfiq Jawhar, McGill University, Montreal,

More information

Copy Right to GARPH Page 38

Copy Right to GARPH Page 38 IMPLEMENT EFFICIENT ALGORITHM FOR PREDICTIONS OF STOCK MARKET BY MULTICLASS SUPPORT VECTOR MACHINE 1 VAIBHAV INGOLE Department of Computer Science & Engineering, TIT, Bhopal, India vingole42@rediffmail.com

More information

Accepted Manuscript. Enterprise Credit Risk Evaluation Based on Neural Network Algorithm. Xiaobing Huang, Xiaolian Liu, Yuanqian Ren

Accepted Manuscript. Enterprise Credit Risk Evaluation Based on Neural Network Algorithm. Xiaobing Huang, Xiaolian Liu, Yuanqian Ren Accepted Manuscript Enterprise Credit Risk Evaluation Based on Neural Network Algorithm Xiaobing Huang, Xiaolian Liu, Yuanqian Ren PII: S1389-0417(18)30213-4 DOI: https://doi.org/10.1016/j.cogsys.2018.07.023

More information

Research Article A Novel Machine Learning Strategy Based on Two-Dimensional Numerical Models in Financial Engineering

Research Article A Novel Machine Learning Strategy Based on Two-Dimensional Numerical Models in Financial Engineering Mathematical Problems in Engineering Volume 2013, Article ID 659809, 6 pages http://dx.doi.org/10.1155/2013/659809 Research Article A Novel Machine Learning Strategy Based on Two-Dimensional Numerical

More information

How To Prevent Another Financial Crisis On Wall Street

How To Prevent Another Financial Crisis On Wall Street How To Prevent Another Financial Crisis On Wall Street Helin Gao helingao@stanford.edu Qianying Lin qlin1@stanford.edu Kaidi Yan kaidi@stanford.edu Abstract Riskiness of a particular loan can be estimated

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

A Novel Method of Trend Lines Generation Using Hough Transform Method

A Novel Method of Trend Lines Generation Using Hough Transform Method International Journal of Computing Academic Research (IJCAR) ISSN 2305-9184, Volume 6, Number 4 (August 2017), pp.125-135 MEACSE Publications http://www.meacse.org/ijcar A Novel Method of Trend Lines Generation

More information

Support Vector Machines: Training with Stochastic Gradient Descent

Support Vector Machines: Training with Stochastic Gradient Descent Support Vector Machines: Training with Stochastic Gradient Descent Machine Learning Spring 2018 The slides are mainly from Vivek Srikumar 1 Support vector machines Training by maximizing margin The SVM

More information

Machine Learning and the Insurance Industry Prof. John D. Kelleher

Machine Learning and the Insurance Industry Prof. John D. Kelleher Machine Learning and the Insurance Industry Prof. John D. Kelleher ADAPT Centre, Dublin Institute of Technology john.d.kelleher@dit.ie The ADAPT Centre is funded under the SFI Research Centres Programme

More information

The Use of Neural Networks in the Prediction of the Stock Exchange of Thailand (SET) Index

The Use of Neural Networks in the Prediction of the Stock Exchange of Thailand (SET) Index Research Online ECU Publications Pre. 2011 2008 The Use of Neural Networks in the Prediction of the Stock Exchange of Thailand (SET) Index Suchira Chaigusin Chaiyaporn Chirathamjaree Judith Clayden 10.1109/CIMCA.2008.83

More information

MS&E 448 Final Presentation High Frequency Algorithmic Trading

MS&E 448 Final Presentation High Frequency Algorithmic Trading MS&E 448 Final Presentation High Frequency Algorithmic Trading Francis Choi George Preudhomme Nopphon Siranart Roger Song Daniel Wright Stanford University June 6, 2017 High-Frequency Trading MS&E448 June

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

Computational Model for Utilizing Impact of Intra-Week Seasonality and Taxes to Stock Return

Computational Model for Utilizing Impact of Intra-Week Seasonality and Taxes to Stock Return Computational Model for Utilizing Impact of Intra-Week Seasonality and Taxes to Stock Return Virgilijus Sakalauskas, Dalia Kriksciuniene Abstract In this work we explore impact of trading taxes on intra-week

More information

Predicting and Preventing Credit Card Default

Predicting and Preventing Credit Card Default Predicting and Preventing Credit Card Default Project Plan MS-E2177: Seminar on Case Studies in Operations Research Client: McKinsey Finland Ari Viitala Max Merikoski (Project Manager) Nourhan Shafik 21.2.2018

More information

A Novel Prediction Method for Stock Index Applying Grey Theory and Neural Networks

A Novel Prediction Method for Stock Index Applying Grey Theory and Neural Networks The 7th International Symposium on Operations Research and Its Applications (ISORA 08) Lijiang, China, October 31 Novemver 3, 2008 Copyright 2008 ORSC & APORC, pp. 104 111 A Novel Prediction Method for

More information

Stock Market Forecasting Using Artificial Neural Networks

Stock Market Forecasting Using Artificial Neural Networks Stock Market Forecasting Using Artificial Neural Networks Burak Gündoğdu Abstract Many papers on forecasting the stock market have been written by the academia. In addition to that, stock market prediction

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

Dr. P. O. Asagba Computer Science Department, Faculty of Science, University of Port Harcourt, Port Harcourt, PMB 5323, Choba, Nigeria

Dr. P. O. Asagba Computer Science Department, Faculty of Science, University of Port Harcourt, Port Harcourt, PMB 5323, Choba, Nigeria PREDICTING THE NIGERIAN STOCK MARKET USING ARTIFICIAL NEURAL NETWORK S. Neenwi Computer Science Department, Rivers State Polytechnic, Bori, PMB 20, Rivers State, Nigeria. Dr. P. O. Asagba Computer Science

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

Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm

Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm Research on Enterprise Financial Management and Decision Making based on Decision Tree Algorithm Shen Zhai School of Economics and Management, Urban Vocational College of Sichuan, Chengdu, Sichuan, China

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

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

Efficient Market Hypothesis & Behavioral Finance

Efficient Market Hypothesis & Behavioral Finance Efficient Market Hypothesis & Behavioral Finance Supervision: Ing. Luděk Benada Prepared by: Danial Hasan 1 P a g e Contents: 1. Introduction 2. Efficient Market Hypothesis (EMH) 3. Versions of the EMH

More information

Introduction. Tero Haahtela

Introduction. Tero Haahtela Lecture Notes in Management Science (2012) Vol. 4: 145 153 4 th International Conference on Applied Operational Research, Proceedings Tadbir Operational Research Group Ltd. All rights reserved. www.tadbir.ca

More information

Deep Learning for Forecasting Stock Returns in the Cross-Section

Deep Learning for Forecasting Stock Returns in the Cross-Section Deep Learning for Forecasting Stock Returns in the Cross-Section Masaya Abe 1 and Hideki Nakayama 2 1 Nomura Asset Management Co., Ltd., Tokyo, Japan m-abe@nomura-am.co.jp 2 The University of Tokyo, Tokyo,

More information

ALGORITHMIC TRADING STRATEGIES IN PYTHON

ALGORITHMIC TRADING STRATEGIES IN PYTHON 7-Course Bundle In ALGORITHMIC TRADING STRATEGIES IN PYTHON Learn to use 15+ trading strategies including Statistical Arbitrage, Machine Learning, Quantitative techniques, Forex valuation methods, Options

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

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

Prediction of stock price developments using the Box-Jenkins method

Prediction of stock price developments using the Box-Jenkins method Prediction of stock price developments using the Box-Jenkins method Bořivoj Groda 1, Jaromír Vrbka 1* 1 Institute of Technology and Business, School of Expertness and Valuation, Okružní 517/1, 371 České

More information

Enforcing monotonicity of decision models: algorithm and performance

Enforcing monotonicity of decision models: algorithm and performance Enforcing monotonicity of decision models: algorithm and performance Marina Velikova 1 and Hennie Daniels 1,2 A case study of hedonic price model 1 Tilburg University, CentER for Economic Research,Tilburg,

More information

Machine Learning on Tactical Asset Allocation with Machine Learning and MATLAB Distributed Computing Server on Microsoft Azure Cloud

Machine Learning on Tactical Asset Allocation with Machine Learning and MATLAB Distributed Computing Server on Microsoft Azure Cloud Machine Learning on Tactical Asset Allocation with Machine Learning and MATLAB Distributed Computing Server on Microsoft Azure Cloud Emilio Llorente-Cano James Mann Aberdeen Asset Management, Plc For professional

More information

Optimal Portfolio Inputs: Various Methods

Optimal Portfolio Inputs: Various Methods Optimal Portfolio Inputs: Various Methods Prepared by Kevin Pei for The Fund @ Sprott Abstract: In this document, I will model and back test our portfolio with various proposed models. It goes without

More information

Accepted Manuscript AIRMS: A RISK MANAGEMENT TOOL USING MACHINE LEARNING. Spyros K. Chandrinos, Georgios Sakkas, Nikos D. Lagaros

Accepted Manuscript AIRMS: A RISK MANAGEMENT TOOL USING MACHINE LEARNING. Spyros K. Chandrinos, Georgios Sakkas, Nikos D. Lagaros Accepted Manuscript AIRMS: A RISK MANAGEMENT TOOL USING MACHINE LEARNING Spyros K. Chandrinos, Georgios Sakkas, Nikos D. Lagaros PII: DOI: Reference: S0957-4174(18)30190-8 10.1016/j.eswa.2018.03.044 ESWA

More information

Single-Parameter Mechanisms

Single-Parameter Mechanisms Algorithmic Game Theory, Summer 25 Single-Parameter Mechanisms Lecture 9 (6 pages) Instructor: Xiaohui Bei In the previous lecture, we learned basic concepts about mechanism design. The goal in this area

More information