Data Mining on Romanian Stock Market Using Neural Networks for Price Prediction
|
|
|
- Leonard Hubbard
- 10 years ago
- Views:
Transcription
1 Informatica Economică vol. 17, no. 3/ Data Mining on Romanian Stock Market Using Neural Networks for Price Prediction Magdalena Daniela NEMEŞ, Alexandru BUTOI Business Information Systems Department Babeş-Bolyai University, Cluj-Napoca, Romania Predicting future prices by using time series forecasting models has become a relevant trading strategy for most stock market players. Intuition and speculation are no longer reliable as many new trading strategies based on artificial intelligence emerge. Data mining represents a good source of information, as it ensures data processing in a convenient manner. Neural networks are considered useful prediction models when designing forecasting strategies. In this paper we present a series of neural networks designed for stock exchange rates forecasting applied on three Romanian stocks traded on the Bucharest Stock Exchange (BSE). A multistep ahead strategy was used in order to predict short-time price fluctuations. Later, the findings of our study can be integrated with an intelligent multi-agent system model which uses data mining and data stream processing techniques for helping users in the decision making process of buying or selling stocks. Keywords: Data Mining, Neural Networks, MLP, Multi-agent System, Majority Voting, Time series Forecasting 1 Introduction Price estimation using time series prediction models has been largely studied as being a key topic in finance for helping users in the decision making process. By developing a strong and reliable time series forecasting model, traders can adjust their trading decisions by following specific buy-sell strategies. Even though many traders rely their decision on speculation, experience and intuition, specific strategies based on data analysis are still more reliable for inexperienced users. In order to prevent random trading, a general trading method should be developed to help users in defining their position. Buying and selling stocks can be extremely difficult when changes occur unexpectedly. A general forecasting method should be included as a measure of guidance in order to prevent massive losses or poor decisions. A large interest regarding forecasts on stock exchange market and currency exchange rates has been observed in the current literature [1-3]. Neural networks are considered a popular and useful strategy as it offers a variety of different models which can be used and adapted according to each specific problem. Trading strategies and patterns can be observed using neural networks and can be exploited in order to obtain competitive advantages. This paper presents extends [4], which is a short introduction to financial markets and neural network modeling. Here, we present a case study where price prediction methods are evaluated in order to find whether using neural networks can be considered an acceptable trading strategy among other trading methods. The main purpose of this paper is to evaluate the neural network time series forecasting models by building and creating a series of neural networks and by trying to predict the future price value for three main Romanian stocks in order to find suitable learning models in the forecasting process. After computing hundreds of tests and consulting the current literature a prediction strategy was discovered. A multistep ahead strategy was evaluated and results were computed using Weka and Matlab. 2 Related Work This paper focuses on evaluating time series forecasting strategies using neural networks
2 126 Informatica Economică vol. 17, no. 3/2013 as main learning method. In order to evaluate prediction results a general understanding on how neural networks work is needed. In [5], artificial neural networks are considered "universal approximators" capable of learning and adapting their structure to each particular input data. Designing an optimal network usually implies constant work based on a trial and error process. The main idea behind neural networks is related to the way information is processed by the human brain. Having its origins in the biological nervous system, a neural network is organized in large interconnection streams between neurons that are designed to work together in solving a specific task. Several articles on neural networks and their financial application are published every year. Well known works such as [6], [7], [8] and [9] are used as a point of reference in the literature by offering specific guidelines in the neural network development process. New models of Neural Networks are constantly presented but the most common artificial neural network is the multilayer perceptron neural network (MLP NN). The MLP has three main layers: the first layer is the input layer which contains the main information to be processed, the second layer is called the "hidden" layer where neurons create weighted connections and use the activation function in order to obtain the "output" layer which strongly depends on the activity in the hidden layer. The main output of the MLP is compared to the corresponding target output and by completing several model evaluations the error rate is reduced [10]. A single-layer perceptron (SLP) is a perceptron having only one layer of variable weights and one layer of output neurons [12]. The main algorithm behind perceptrons ensures that the learning process takes place in a finite amount of time. The perceptron model designed by Rosenblatt in 1962 has the 1if a 0 following form: f ( a) [12]. 1if a 0 SLP are designed to divide inputs in a twodimensional input space by means of a straight line. Because SLP can solve only simple problems, a new multi-layer perceptron was created in order to solve complex issues by using two or more trainable weight layers. This is how the need to develop multilayer perceptrons emerged. Perceptrons with more than one layer of variably weighted connections are referred to as multilayer perceptrons (MLP). A n-layer perceptron has n variable weight layers and n + 1 neuron layers with neuron layer 1 being the input layer [11]. The multi-layer perceptron neural network (MLP) has a feed forward based architecture, and is trained using the back propagation training algorithm [13]. MLPs are generally created of three main layers: an input layer, a hidden layer and an output layer. All these three levels are interconnected using a specified methodology. The learning method used by MLPs is considered to be a supervised method because the output values are already known to the MLP. The MLP method has two characteristics [14]: (1) it has nonlinear processing elements (PEs) with a nonlinearity that must be smooth; (2) massive interconnectivity determines strong relationships between layers (any element of a given layer feeds all the elements of the next layer). When working with time-series data, using recurrent networks can be useful as their design is compact and can reduce the number of required input nodes. An example of a classic recurrent network is the Elman network where nodes from the hidden layer have feedback connections to themselves. The classic training method for these networks was proposed by Elman in 1990 and consists of using the back-propagation algorithm combined with treating each of the feedback inputs from the context layer as an additional input to the network at the next time step [15]. Currently there are several variations for this specific network used in time series prediction presented in [16-19]. However using recurrent models can become time consuming if the number of layers increases or the used dataset is large. In 2011, Guresen, et. al. [14] evaluates the effectiveness of different neural network models by comparing the Mean Square Error (MSE) and Mean Absolute Deviate of
3 Informatica Economică vol. 17, no. 3/ NASDAQ Stock Exchange index obtained on different ANN such as multi-layer perceptron (MLP), dynamic artificial neural network (DAN2) and the hybrid neural networks (GARCH). The study concluded that MLP was the best used architecture when forecasting stock movements. Even though many hybrid models have been developed there are still traditional ANN models that offer accurate predictions. Our previous study on stock forecasting presented in [4] introduces several models, mainly implemented in the Weka Time Series Forecasting Module: Multilayer Perceptron Regressor(MLPReg) which is an extension of the MLP that uses an optimization class in order to minimize the squared error plus a quadratic penalty; RBF Regressor is a neural network which implements radial basis function networks in classification problems and differs from the traditional RBF network by using the BFGS method for minimizing squared error [20]; Linear Regression widely studied within statistics, represents a good alternative when dealing with numeric attributes and price forecasting to express outputs; Gaussian Processes is a general regression method structured as a collection of random variables which have (consistent) joint Gaussian distributions [21]; Sequential minimal optimization (SMO) is an improved algorithm for addressing regression shortcomings using support vector machines [22]. In the previous paper [4] a general multiagent system using different prediction methods was presented aiming to help users in the decision making process using a Majority Voting System (MVS). The system tackles with the problem of strong dynamics of trading data. An intelligent, autonomous multi-agent system can provide powerful trading support, facilitating the decision making process. The autonomous system consists of several forecasting agents with different learning strategies for short-term price prediction outputting multiple predicted values. A confidence index based on the majority voting technique will aggregate the output values offering real-time trading support. The prediction performance of the system is determined by comparing the predicted values with the real market values of the same period. 3 Measuring performance In order to evaluate the performance of a neural network, a set of different metrics can be used and compared. The literature offers many evaluation alternatives and each one can help in making decisions. The most common error measures are the following [12]: mean absolute error (MAE) - N _ 1 MAE j Y i Yi ; N t 1 mean squared error (MSE) - 1 N 2 MSE ( Y i Y i ), where Yi is the N i 1 predicted value and Yi is the observed value for a number of N observations; root mean squared error (RMSE) - RMSE 1 N N i 1 _ ( Y i Y i ) 2, where _ Y is the predicted value and i Y is the observed value for a number of N observations. A very common criteria is using the MAE or the MSE as a means of establishing the best performance. Even though these evaluation metrics are largely used, there are a series of drawbacks regarding to their use. Both MAE and MSE can lead to poor generalization due to the used learning datasets. By including evaluation metrics of risk-adjusted profit, the obtained results can be considered more reliable. When evaluating the MLPs performance, the used dataset is extremely important. Moreover, the training dataset must be representative for the whole dataset and should be evaluated several times to produce different training and validation datasets. i
4 128 Informatica Economică vol. 17, no. 3/2013 There is no general rule about the number of hidden layers a MLP neural network should have. The number and the size of these layers is usually determined heuristically and should be adapted according to each situation. By having a large hidden layer, the amount of data needed to evaluate the model increases. 4 Methodology This paper focuses on time series forecasting strategies using neural networks as the main learning method. In order to evaluate the prediction performance, three different stocks were analyzed during the period of January 2012 to February 2013 using different input indices extracted from the technical and fundamental analysis. The scope of this evaluation was to train the neural network in order to facilitate output evaluation for the next month (March 2013). The selected stocks were BRD, TLV and SIF1 as being representative for the Romanian stock market. To build the model, the opening and closing price of the stock were considered in order to train the network. Results were computed using Weka Time Series Analysis and Forecasting module [20] and Matlab. In the Weka Time Series Analysis and Forecasting module a Multilayer Perceptron network was computed and used as prediction model. In Matlab a NARX neural network was used in order to complete the multiple steps ahead predictions [23]. Inputs and targets were normalized into the range [-1,1]. In the multistep ahead prediction the predicted value serves as input data for the new predicted value. In this way the actual obtained error is transmitted from one step to the other determining a less accurate prediction. 5 Experimental results BRD Symbol Predictions Computed results for the multistep ahead prediction using Weka Time Series Analysis and Table 1. Prediction results for BRD using Weka Forecasting tool and Matlab Measure of Error Weka Matlab Mean absolute error (MAE) Root mean squared error (RMSE) Mean squared error (MSE) Forecasting module and Matlab can be observed in Table 1 and we can observe that Matlab results were much better than the ones obtained by Weka. Weka The neural network built in Weka contained information regarding the opening and the closing trading values. In order to ensure better results the data was normalized in the range of [-1,1]. A general MLP algorithm was used as learning method. The network was built using a learning rate of 0.3 and a training time of 500. After testing the network the forecasting tool was used in order to predict future values for March The general MSE suggests that each predicted value was a specific error which is transmitted from one step to the other as future predictions depend on the computed value of the previous prediction. A one step ahead methodology tested on the same dataset suggests better results than the multistep ahead prediction. Even though the MSE value is acceptable we observed that the predicted values do not follow the actual trading course of the BRD stock. Matlab A neural network was computed with 20 neurons on the hidden layer and a delay value of 2. The training algorithm used to compute the network, was the Levenberg Marquardt algorithm (LMA) which is widely known and used for minimizing nonlinear functions. In our case the minimization is made on the MSE. The literature considers that a proportion of 75% train, 15% validation and 15% test is a good practice. We used these values
5 Informatica Economică vol. 17, no. 3/ in our evaluation but users can adapt them according to each specific problem. The error histogram computed after the training process of the neural network presents the distribution of errors during the training of the network with three main datasets: the training, the validation and the test set. Most errors are concentrated around zero which is indicated by the orange line as the Fig. 1 presents. Fig. 1. The error histogram for BRD Fig. 2. MSE evolution for BRD The MSE of the created neural network is and was obtained at the 3rd epoch. The general MSE drop can be observed in Fig. 2 as the learning process determines a reduction in the network error. The training process stops when the validation error stops decreasing. The blue line indicates the MSE for the training dataset, the green line for the Validation set and the red line indicates the evolution of the MSE for the test set. All three suggest a good performance of the neural network because by training the network, a constant drop of the MSE has been established. Fig. 3. The error autocorrelation for BRD The error autocorrelation figure presents the way prediction errors are related in time. The value presented at zero is the MSE. The correlations except the zero ones tend to fall in the 95% confidence interval which suggests that the neural network was a good performance. The predicted values for BRD using this method suggests that first computed predictions are close to the actual value as can be seen in Fig. 4. Predicted values for BRD As predicted values are further away from the first predicted value, the predicted values start to become more inaccurate and the MAE value increases.
6 130 Informatica Economică vol. 17, no. 3/2013 Fig. 4. Predicted values for BRD SIF1 Symbol Predictions Computed results for SIF1 using Weka Time Series Analysis and Forecasting module and Matlab can be observed in the following table: Table 2. Prediction results for SIF1 using Weka Forecsting tool and Matlab Measure of Error Weka Matlab Mean absolute error (MAE) Root mean squared error (RMSE) Mean squared error (MSE) Weka The same methodology was applied for SIF1. The learning algorithm was MLP and the prediction was made on 21 days representing the number of trading days of March The neural network used was the MLP neural network at a learning rate of 0.3 and a training time of 500. Used data was normalized in the range of [-1,1]. Computed results are less accurate than the obtained results using NARX neural network. Fig 5. The error histogram for SIF1 Matlab Computed results show that the distribution of errors is concentrated near 0. The obtained MSE of the network is and was obtained at the 4th epoch. Even though many Fig. 6. MSE evolution for SIF1 tests were performed no major improvement was detected in the obtained values. The final created network has 20 neurons on the hidden layer and uses the Levenberg Marquardt algorithm as learning method.
7 Informatica Economică vol. 17, no. 3/ TLV Symbol Predictions Computed results for TLV using Weka Forecasting tool and Matlab can be observed in Table 3. Matlab results are not as good as the ones obtained with the Weka Forecasting tool. Table 3. Prediction results for TLV using Weka Forecasting tool and Matlab Measure of Error Value Weka Value Matlab Mean absolute error (MAE) Root mean squared error (RMSE) Mean squared error (MSE) Weka A MLP neural network was used at a learning rate of 0.3, a momentum value of 0.2 and a training time of 500. Input data was normalized in the range of [-1,1]. After testing and training the network, computed results for the 21-day prediction show a MSE of which was obtained by comparing the actual values with the predicted values of the same period of time. Matlab The same type of neural network was computed for TLV as previously presented for BRD and SIF1. We can see that by starting the learning process the MSE for the train, test and validation datasets decreased rapidly as the network adapted the outputs to the included inputs. The best validation MSE was obtained at epoch 4 with a value of presented in Figure 7. Fig. 7. MSE evolution for TLV The autocorrelation of errors (Figure 8) during the training process of the neural network suggest that most of the computed values are situated in the 95% confidence interval. There are however some exceptions which suggest that the created neural network can be improved by retraining it or by increasing the number of neurons in the hidden layer. Several tests were computed but no major improvement was obtained.
8 132 Informatica Economică vol. 17, no. 3/2013 The actual and the predicted values can be observed in the chart below: Fig. 8. The error autocorrelation for TLV Fig. 9. Predicted values for TLV 6 Discussion The overall obtained results suggest that Matlab results were more accurate than Weka obtained results. Multiple steps ahead predictions usually offer less accurate results than one step ahead predictions. However it is difficult to consider that investors can solely rely on the predicted values. It is important to see the general help that these tools offer users in order to predict future values but other important factors have to be taken into consideration when making decisions. A general model cannot be created from the obtained results as each stock has its own particularities and can be influenced by multiple factors which are not always included in the prediction model. In order to tackle with this, the previous paper [4] presented an adaptive multi-agent system which deals with the following problem that every prediction method needs a specific setup for achieving the best performance. We proposed a multiagent model for dynamic computation of the best time length of the required training dataset for every new symbol built on 5 types of agents which coordinates and cooperates
9 Informatica Economică vol. 17, no. 3/ with each other in order to obtain the best performance in the prediction process: (1) The market watcher agent implements one of the six studied learning and prediction strategies with its parameters tuned for best performance on each traded symbol. (2) Coordinator Agents will organize, coordinate and supervise the market watchers in order to obtain maximum global performance and accuracy of the predictions. (3) Pre-learn coordinator agents will enable the pre-learn process of the agents for high performance learning and fine tuning of each agent for maximum performance. They will enable the update process of the learning parameters and strategy when agent predictions have increasing errors due to data change variations. (4) Ranking coordinator agents will track the performance of every market watcher and, based on its performance history. (5) The aggregator agents use a weighted majority voting model in order to reconciliate the predicted values provided by all agents. The ranking indexes will constitute the voting power of each agent in the predicted values reconciliation. The global prediction for a specific time in the future will be calculated as weighted mean of all predicted values. Integration of the evaluated learning processes into the agent-based framework will be achieved using an extra piping data stream processing layer. The data stream layer will have as the main data source trading data services providing real time stock data. Stream processing is suitable for trading data analyses due to the continuous specific of the trading process. Fig. 10. Integration of Data Mining Tools with T-MAS system A data stream is represented by a constant sequence of tuples generated and processed in real time [24]. Recently real-time processing of large data streams has become a major issue in performance evaluation processes. General solutions in large data stream processing have become essential when developing real time trading systems. Because stream processing needs to be highly responsive, data stream environments has different requirements from the traditional software. The general requirements that need to be taken into consideration when working with data streams are the following [25]: each data should be processed individually and used only once;
10 134 Informatica Economică vol. 17, no. 3/2013 the application should use a limited amount of memory; results need to be presented in a limited amount of time; be ready to predict at any time. In our model, integration of different datamining tools like Matlab and Weka used for price predictions are integrated with T-MAS system trough a stream processing layer using data pipes. The pre-learn stage and the trading data will be computed using the thirdparty tools in order to avoid implementing them from scratch inside the agents. The main data stream that integrates trading data sources and T-MAS system are: Stock Exchange data services and the stream processing layer where trading data is continuous collected and processed using implemented neural networks provided by the integrated tools; Stream processing layer with market watcher agents which use the stream processing layer as data source for providing predictions. The results and data output provided by the neural networks in the stream processing layer are used as input by market watchers for providing a prediction regarding the future prices; Stream processing layer with the prelearn agents which will recalibrate the learning models implemented and integrated in the stream processing layer for maximum performance. 7 Conclusions and Future Development General results show that using time series neural networks for forecasting on Romanian Stock Exchange is feasible but requires specific implementation methodology for best results [4]. Even though computed results for the multiple step ahead prediction was better when using NARX neural networks, the MLP neural network results can also be considered relevant and should be taken into consideration when developing trading strategies. It is relevant to understand the limitations imposed by these models and to define new decision criteria when buying or selling stocks. Relevant factors such as rapid changes in the global economy, natural disasters or global political issues can determine significant changes in the stock market price which makes the prediction process even more difficult. As a general observation, it is important to observe the minimum particular time span for selecting historical training data sets in order to ensure better results. Future development will focus on determining this optimum timespan for each analyzed stock in order to improve final results [4]. Because a pre-learn stage is needed to find this optimum time span for each learning process, the actual model evaluation is time consuming and requires a well organized set of experiments. Because of the markets dynamics a need to determine the optimum training value for each dataset and to reevaluate the neural network in a continuous way emerges. In order to solve this issue stream processing techniques will be studied and analyzed to simulate real time trading systems. Time series neural networks use historical data in order to predict future values. This can be successfully applied in a trading system by using real time prediction models based on the continuous evaluation of data streams. This could help users in delimiting real time bids by observing the predicted values of the traded stock. In order to ensure better results a multi-agent system with several prediction methodologies can be designed to ensure a more accurate evaluation of the predicted stock price. In one of my previous works I have presented a multi-agent system that could be successfully adapted for this current situation in order to facilitate the decision making process. The created system needs to be capable of self-organization and self-coordination and the main decision strategy can focus on weighted majority voting methods [4]. The best prediction method will help end users in determining the actual buy-sell strategy. The system can be integrated with existing prediction tools using a stream processing layer as a bind.
11 Informatica Economică vol. 17, no. 3/ The actual limitations of the model are still yet to be found and solved. Many successful trading systems are limited by environmental and unexpected variables but continue to be successfully used by traders on different stock exchange markets. Acknowledgement This paper was supported by CNCS Young Researchers Teams Project - TE 316. References [1] T. Koskela, M. Lehtokangas, J. Saarinen and K. Kaski, "Time series prediction with multilayer perceptron, FIR and Elman neural networks" In Proceedings of the World Congress on Neural Networks, September 1996, pp [2] M. Ghiassi and S. Nangoy, "A dynamic artificial neural network model for forecasting nonlinear processes", Computers and Industrial Engineering, Vol. 57, August 2009, pp [3] M. Khashei and M. Bijari, "An artificial neural network (p,d,q) model for time series forecasting", Expert Systems with Applications, Vol. 37, January 2010, pp [4] D. Nemes, "Agent-Based Data Mining Stock Evolution Forecasting". International Conference on Informatics in Economy, Bucharest: ASE Publishing House 2013, pp [5] S. Kiranyaz, e. "Evolutionary artificial neural networks by multi-dimensional particle swarm optimization". Neural Networks, 2009, pp [6] L. S. Yu "A neural-network-based nonlinear metamodeling approach to financial time series forecasting". Applied Soft Computing 9.2, 2009, pp [7] Z. Liao a. "Forecasting model of global stock index by stochastic time effective neural network". Expert Systems with Applications 37.1, 2010, pp [8] Y. Zhang a. Stock market prediction of S&P 500 via combination of improved BCO approach and BP neural network. Expert systems with applications 36.5, 2009, pp [9] P.-C. Chang e. "A neural network with a case based dynamic window for stock trading prediction". Expert Systems with Applications 36.3, 2009, [10] C.-F. Tsai, a.-w. "Using neural network ensembles for bankruptcy prediction and credit scoring". Expert Systems with Applications 34.4, pp [11] D. Kriesel, "A Brief Introduction to Neural Networks", 2007, [Online] Available at _media/science/neuronalenetze-en-zeta2-1col-dkrieselcom.pdf [12] M. B. Ersin, "Improving forecasts of GARCH family models with the artificial neural networks: An application to the daily returns in Istanbul Stock Exchange". Expert Systems with Applications, Volume 36, Issue 4, May 2009, pp [13] A. Brabazon a. "Biologically inspired algorithms for financial modelling", Vol. 20. Berlin: Springer, 2006, pp.18-22, , , 153, [14] G. K. Erkam. "Using artificial neural network models in stock market index prediction". Expert Systems with Applications, Volume 38, Issue 8, August 2011, pp [15] J. Elman. "Finding structures in time". Cognitive Science 14, 1990, pp [16] M. A.-F. Zolfaghari. "Chaotic time series prediction with residual analysis method using hybrid Elman NARX neural networks". Neurocomputing, Volume 73, Issues 13 15, 2010, pp [17] M. K. Bijari. "An artificial neural network (p,d,q) model for timeseries forecasting", Expert Systems with Applications, Volume 37, Issue 1, January 2010, pp [18] R. C. Zhang. "Cooperative convolution of Elman recurrent neural networks for chaotic time series prediction. Neurocomputing", Volume 86, June 2012, pp [19] H. Tan. "The Application of Improved Elman Neural Network in the Exchange Rate Time Series". Artificial Intelligence and Computational Intelligence (AICI),
12 136 Informatica Economică vol. 17, no. 3/ International Conference on, vol.3, October 2010, pp [20] M. Hall, E. Frank, G. Holmes, B. Pfahringer, P. Reutemann, I. Witten, "The WEKA Data Mining Software: An Update", SIGKDD Explorations, Vol. 11, [21] C. E. Rasmussen, "Gaussian Processes in Machine Learning", MIT Press, 2003 [22] S. S. Keerthi, Bhattacharyya C. and Murthy K.R.K., "Improvements to the SMO algorithm for SVM regression", IEEE Transactions 11.5, 2000, pp [23] MathWorks Documentation Center. (n.d.). Time Series Prediction. Retrieved June 23, 2013 [Online], Available at: time-series-prediction.html [24] M. Stonebraker, Ç. Uǧur, and Z. Stan "The 8 requirements of real-time stream processing". ACM SIGMOD Record 34.4, 2005, pp [25] Bifet A., R. Kirkby, P. Kranen, P. Reutemann, "Massive Online Analysis, Manual", [Online], May 2011, Available at ~abifet/moa/manual.pdf Daniela NEMEŞ has graduated from the Faculty of Economics and Business Administration in She holds a bachelor diploma in Finance and Economics as well as in Business Information Systems and she currently is a second year Master student in the same department. Alexandru BUTOI is a PhD student since October 2012, in the domain of Cybernetics and Statistics at Faculty of Economics and Business Administration, Babeş-Bolyai University of Cluj-Napoca. His main research interests are Web technologies and Mobile technology applied in business and lately, Cloud Computing, focusing on data security and privacy in Cloud Computing. He also worked on development of agent-based cloud resource negotiation protocols and developed a secure protocol for cloud storage environments.
Prediction Model for Crude Oil Price Using Artificial Neural Networks
Applied Mathematical Sciences, Vol. 8, 2014, no. 80, 3953-3965 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.43193 Prediction Model for Crude Oil Price Using Artificial Neural Networks
Lecture 6. Artificial Neural Networks
Lecture 6 Artificial Neural Networks 1 1 Artificial Neural Networks In this note we provide an overview of the key concepts that have led to the emergence of Artificial Neural Networks as a major paradigm
Supply Chain Forecasting Model Using Computational Intelligence Techniques
CMU.J.Nat.Sci Special Issue on Manufacturing Technology (2011) Vol.10(1) 19 Supply Chain Forecasting Model Using Computational Intelligence Techniques Wimalin S. Laosiritaworn Department of Industrial
Power Prediction Analysis using Artificial Neural Network in MS Excel
Power Prediction Analysis using Artificial Neural Network in MS Excel NURHASHINMAH MAHAMAD, MUHAMAD KAMAL B. MOHAMMED AMIN Electronic System Engineering Department Malaysia Japan International Institute
Analecta Vol. 8, No. 2 ISSN 2064-7964
EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,
APPLICATION OF ARTIFICIAL NEURAL NETWORKS USING HIJRI LUNAR TRANSACTION AS EXTRACTED VARIABLES TO PREDICT STOCK TREND DIRECTION
LJMS 2008, 2 Labuan e-journal of Muamalat and Society, Vol. 2, 2008, pp. 9-16 Labuan e-journal of Muamalat and Society APPLICATION OF ARTIFICIAL NEURAL NETWORKS USING HIJRI LUNAR TRANSACTION AS EXTRACTED
Planning Workforce Management for Bank Operation Centers with Neural Networks
Plaing Workforce Management for Bank Operation Centers with Neural Networks SEFIK ILKIN SERENGIL Research and Development Center SoftTech A.S. Tuzla Teknoloji ve Operasyon Merkezi, Tuzla 34947, Istanbul
A Stock Trading Algorithm Model Proposal, based on Technical Indicators Signals
Informatica Economică vol. 15, no. 1/2011 183 A Stock Trading Algorithm Model Proposal, based on Technical Indicators Signals Darie MOLDOVAN, Mircea MOCA, Ştefan NIŢCHI Business Information Systems Dept.
Price Prediction of Share Market using Artificial Neural Network (ANN)
Prediction of Share Market using Artificial Neural Network (ANN) Zabir Haider Khan Department of CSE, SUST, Sylhet, Bangladesh Tasnim Sharmin Alin Department of CSE, SUST, Sylhet, Bangladesh Md. Akter
Comparison of Supervised and Unsupervised Learning Classifiers for Travel Recommendations
Volume 3, No. 8, August 2012 Journal of Global Research in Computer Science REVIEW ARTICLE Available Online at www.jgrcs.info Comparison of Supervised and Unsupervised Learning Classifiers for Travel Recommendations
Neural Network Design in Cloud Computing
International Journal of Computer Trends and Technology- volume4issue2-2013 ABSTRACT: Neural Network Design in Cloud Computing B.Rajkumar #1,T.Gopikiran #2,S.Satyanarayana *3 #1,#2Department of Computer
Neural Network Applications in Stock Market Predictions - A Methodology Analysis
Neural Network Applications in Stock Market Predictions - A Methodology Analysis Marijana Zekic, MS University of Josip Juraj Strossmayer in Osijek Faculty of Economics Osijek Gajev trg 7, 31000 Osijek
Data quality in Accounting Information Systems
Data quality in Accounting Information Systems Comparing Several Data Mining Techniques Erjon Zoto Department of Statistics and Applied Informatics Faculty of Economy, University of Tirana Tirana, Albania
The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network
, pp.67-76 http://dx.doi.org/10.14257/ijdta.2016.9.1.06 The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network Lihua Yang and Baolin Li* School of Economics and
Computational Neural Network for Global Stock Indexes Prediction
Computational Neural Network for Global Stock Indexes Prediction Dr. Wilton.W.T. Fok, IAENG, Vincent.W.L. Tam, Hon Ng Abstract - In this paper, computational data mining methodology was used to predict
How To Predict Web Site Visits
Web Site Visit Forecasting Using Data Mining Techniques Chandana Napagoda Abstract: Data mining is a technique which is used for identifying relationships between various large amounts of data in many
Knowledge Based Descriptive Neural Networks
Knowledge Based Descriptive Neural Networks J. T. Yao Department of Computer Science, University or Regina Regina, Saskachewan, CANADA S4S 0A2 Email: [email protected] Abstract This paper presents a
Time Series Data Mining in Rainfall Forecasting Using Artificial Neural Network
Time Series Data Mining in Rainfall Forecasting Using Artificial Neural Network Prince Gupta 1, Satanand Mishra 2, S.K.Pandey 3 1,3 VNS Group, RGPV, Bhopal, 2 CSIR-AMPRI, BHOPAL [email protected]
FOREX TRADING PREDICTION USING LINEAR REGRESSION LINE, ARTIFICIAL NEURAL NETWORK AND DYNAMIC TIME WARPING ALGORITHMS
FOREX TRADING PREDICTION USING LINEAR REGRESSION LINE, ARTIFICIAL NEURAL NETWORK AND DYNAMIC TIME WARPING ALGORITHMS Leslie C.O. Tiong 1, David C.L. Ngo 2, and Yunli Lee 3 1 Sunway University, Malaysia,
Neural Networks and Support Vector Machines
INF5390 - Kunstig intelligens Neural Networks and Support Vector Machines Roar Fjellheim INF5390-13 Neural Networks and SVM 1 Outline Neural networks Perceptrons Neural networks Support vector machines
Stock Portfolio Selection using Data Mining Approach
IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 11 (November. 2013), V1 PP 42-48 Stock Portfolio Selection using Data Mining Approach Carol Anne Hargreaves, Prateek
Combining Artificial Intelligence with Non-linear Data Processing Techniques for Forecasting Exchange Rate Time Series
Combining Artificial Intelligence with Non-linear Data Processing Techniques for Forecasting Exchange Rate Time Series Heng-Li Yang, 2 Han-Chou Lin, First Author Department of Management Information systems,
Forecasting of Indian Rupee (INR) / US Dollar (USD) Currency Exchange Rate Using Artificial Neural Network
Forecasting of Indian Rupee (INR) / US Dollar (USD) Currency Exchange Rate Using Artificial Neural Network Yusuf Perwej 1 and Asif Perwej 2 1 M.Tech, MCA, Department of Computer Science & Information System,
Stock Price Prediction Using Artificial Neural Network
ISSN: 23198753 Stock Price Prediction Using Artificial Neural Network Mayankkumar B Patel 1, Sunil R Yalamalle 2 P.G. Student, Department of Industrial Engineering and Management, R V College of Engineering,
A Multi-level Artificial Neural Network for Residential and Commercial Energy Demand Forecast: Iran Case Study
211 3rd International Conference on Information and Financial Engineering IPEDR vol.12 (211) (211) IACSIT Press, Singapore A Multi-level Artificial Neural Network for Residential and Commercial Energy
DATA MINING TECHNOLOGY. Keywords: data mining, data warehouse, knowledge discovery, OLAP, OLAM.
DATA MINING TECHNOLOGY Georgiana Marin 1 Abstract In terms of data processing, classical statistical models are restrictive; it requires hypotheses, the knowledge and experience of specialists, equations,
NEURAL networks [5] are universal approximators [6]. It
Proceedings of the 2013 Federated Conference on Computer Science and Information Systems pp. 183 190 An Investment Strategy for the Stock Exchange Using Neural Networks Antoni Wysocki and Maciej Ławryńczuk
NEURAL NETWORKS IN DATA MINING
NEURAL NETWORKS IN DATA MINING 1 DR. YASHPAL SINGH, 2 ALOK SINGH CHAUHAN 1 Reader, Bundelkhand Institute of Engineering & Technology, Jhansi, India 2 Lecturer, United Institute of Management, Allahabad,
Real Stock Trading Using Soft Computing Models
Real Stock Trading Using Soft Computing Models Brent Doeksen 1, Ajith Abraham 2, Johnson Thomas 1 and Marcin Paprzycki 1 1 Computer Science Department, Oklahoma State University, OK 74106, USA, 2 School
Impact of Feature Selection on the Performance of Wireless Intrusion Detection Systems
2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Impact of Feature Selection on the Performance of ireless Intrusion Detection Systems
Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski [email protected]
Introduction to Machine Learning and Data Mining Prof. Dr. Igor Trakovski [email protected] Neural Networks 2 Neural Networks Analogy to biological neural systems, the most robust learning systems
Long-term Stock Market Forecasting using Gaussian Processes
Long-term Stock Market Forecasting using Gaussian Processes 1 2 3 4 Anonymous Author(s) Affiliation Address email 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
American International Journal of Research in Science, Technology, Engineering & Mathematics
American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-349, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629
A New Approach For Estimating Software Effort Using RBFN Network
IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.7, July 008 37 A New Approach For Estimating Software Using RBFN Network Ch. Satyananda Reddy, P. Sankara Rao, KVSVN Raju,
Method of Combining the Degrees of Similarity in Handwritten Signature Authentication Using Neural Networks
Method of Combining the Degrees of Similarity in Handwritten Signature Authentication Using Neural Networks Ph. D. Student, Eng. Eusebiu Marcu Abstract This paper introduces a new method of combining the
Neural Network Based Forecasting of Foreign Currency Exchange Rates
Neural Network Based Forecasting of Foreign Currency Exchange Rates S. Kumar Chandar, PhD Scholar, Madurai Kamaraj University, Madurai, India [email protected] Dr. M. Sumathi, Associate Professor,
Using Genetic Algorithms in Secured Business Intelligence Mobile Applications
Informatica Economică vol. 15, no. 1/2011 69 Using Genetic Algorithms in Secured Business Intelligence Mobile Applications Silvia TRIF Academy of Economic Studies, Bucharest, Romania [email protected]
Artificial Neural Network and Non-Linear Regression: A Comparative Study
International Journal of Scientific and Research Publications, Volume 2, Issue 12, December 2012 1 Artificial Neural Network and Non-Linear Regression: A Comparative Study Shraddha Srivastava 1, *, K.C.
Neural Network Add-in
Neural Network Add-in Version 1.5 Software User s Guide Contents Overview... 2 Getting Started... 2 Working with Datasets... 2 Open a Dataset... 3 Save a Dataset... 3 Data Pre-processing... 3 Lagging...
Neural network software tool development: exploring programming language options
INEB- PSI Technical Report 2006-1 Neural network software tool development: exploring programming language options Alexandra Oliveira [email protected] Supervisor: Professor Joaquim Marques de Sá June 2006
Effect of Using Neural Networks in GA-Based School Timetabling
Effect of Using Neural Networks in GA-Based School Timetabling JANIS ZUTERS Department of Computer Science University of Latvia Raina bulv. 19, Riga, LV-1050 LATVIA [email protected] Abstract: - The school
Utilization of Neural Network for Disease Forecasting
Utilization of Neural Network for Disease Forecasting Oyas Wahyunggoro 1, Adhistya Erna Permanasari 1, and Ahmad Chamsudin 1,2 1 Department of Electrical Engineering and Information Technology, Gadjah
Predictive time series analysis of stock prices using neural network classifier
Predictive time series analysis of stock prices using neural network classifier Abhinav Pathak, National Institute of Technology, Karnataka, Surathkal, India [email protected] Abstract The work pertains
A Regression Approach for Forecasting Vendor Revenue in Telecommunication Industries
A Regression Approach for Forecasting Vendor Revenue in Telecommunication Industries Aida Mustapha *1, Farhana M. Fadzil #2 * Faculty of Computer Science and Information Technology, Universiti Tun Hussein
OPTIMUM LEARNING RATE FOR CLASSIFICATION PROBLEM
OPTIMUM LEARNING RATE FOR CLASSIFICATION PROBLEM WITH MLP IN DATA MINING Lalitha Saroja Thota 1 and Suresh Babu Changalasetty 2 1 Department of Computer Science, King Khalid University, Abha, KSA 2 Department
Neural Networks in Data Mining
IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 03 (March. 2014), V6 PP 01-06 www.iosrjen.org Neural Networks in Data Mining Ripundeep Singh Gill, Ashima Department
Iranian J Env Health Sci Eng, 2004, Vol.1, No.2, pp.51-57. Application of Intelligent System for Water Treatment Plant Operation.
Iranian J Env Health Sci Eng, 2004, Vol.1, No.2, pp.51-57 Application of Intelligent System for Water Treatment Plant Operation *A Mirsepassi Dept. of Environmental Health Engineering, School of Public
Face Recognition For Remote Database Backup System
Face Recognition For Remote Database Backup System Aniza Mohamed Din, Faudziah Ahmad, Mohamad Farhan Mohamad Mohsin, Ku Ruhana Ku-Mahamud, Mustafa Mufawak Theab 2 Graduate Department of Computer Science,UUM
Automatic Algorithm Design by Neural Network and Indicators in Iran Stock Transactions
Journal of Novel Applied Sciences Available online at www.jnasci.org 2015 JNAS Journal-2015-4-4/501-507 ISSN 2322-5149 2015 JNAS Automatic Algorithm Design by Neural Network and Indicators in Iran Stock
ANN Model to Predict Stock Prices at Stock Exchange Markets
ANN Model to Predict Stock Prices at Stock Exchange Markets Wanjawa, Barack Wamkaya School of Computing and Informatics, University of Nairobi, [email protected] Muchemi, Lawrence School of Computing
Review on Financial Forecasting using Neural Network and Data Mining Technique
ORIENTAL JOURNAL OF COMPUTER SCIENCE & TECHNOLOGY An International Open Free Access, Peer Reviewed Research Journal Published By: Oriental Scientific Publishing Co., India. www.computerscijournal.org ISSN:
AN APPLICATION OF TIME SERIES ANALYSIS FOR WEATHER FORECASTING
AN APPLICATION OF TIME SERIES ANALYSIS FOR WEATHER FORECASTING Abhishek Agrawal*, Vikas Kumar** 1,Ashish Pandey** 2,Imran Khan** 3 *(M. Tech Scholar, Department of Computer Science, Bhagwant University,
Anupam Tarsauliya Shoureya Kant Rahul Kala Researcher Researcher Researcher IIITM IIITM IIITM Gwalior Gwalior Gwalior
Analysis of Artificial Neural Network for Financial Time Series Forecasting Anupam Tarsauliya Shoureya Kant Rahul Kala Researcher Researcher Researcher IIITM IIITM IIITM Gwalior Gwalior Gwalior Ritu Tiwari
A Prediction Model for Taiwan Tourism Industry Stock Index
A Prediction Model for Taiwan Tourism Industry Stock Index ABSTRACT Han-Chen Huang and Fang-Wei Chang Yu Da University of Science and Technology, Taiwan Investors and scholars pay continuous attention
Journal of Optimization in Industrial Engineering 13 (2013) 49-54
Journal of Optimization in Industrial Engineering 13 (2013) 49-54 Optimization of Plastic Injection Molding Process by Combination of Artificial Neural Network and Genetic Algorithm Abstract Mohammad Saleh
Classification of Learners Using Linear Regression
Proceedings of the Federated Conference on Computer Science and Information Systems pp. 717 721 ISBN 978-83-60810-22-4 Classification of Learners Using Linear Regression Marian Cristian Mihăescu Software
Comparison of K-means and Backpropagation Data Mining Algorithms
Comparison of K-means and Backpropagation Data Mining Algorithms Nitu Mathuriya, Dr. Ashish Bansal Abstract Data mining has got more and more mature as a field of basic research in computer science and
Efficient Artificial Neural Network based Practical Approach of Stock Market Forecasting
Efficient Artificial Neural Network based Practical Approach of Stock Market Forecasting Rupinder kaur 1, Ms. Vidhu Kiran 2 M.Tech, CSE, JCDV, Sirsa, India 1 Asst Professor (CSE), JCDM College of Engineering,
A New Quantitative Behavioral Model for Financial Prediction
2011 3rd International Conference on Information and Financial Engineering IPEDR vol.12 (2011) (2011) IACSIT Press, Singapore A New Quantitative Behavioral Model for Financial Prediction Thimmaraya Ramesh
Flexible Neural Trees Ensemble for Stock Index Modeling
Flexible Neural Trees Ensemble for Stock Index Modeling Yuehui Chen 1, Ju Yang 1, Bo Yang 1 and Ajith Abraham 2 1 School of Information Science and Engineering Jinan University, Jinan 250022, P.R.China
NEURAL NETWORKS A Comprehensive Foundation
NEURAL NETWORKS A Comprehensive Foundation Second Edition Simon Haykin McMaster University Hamilton, Ontario, Canada Prentice Hall Prentice Hall Upper Saddle River; New Jersey 07458 Preface xii Acknowledgments
HYBRID PROBABILITY BASED ENSEMBLES FOR BANKRUPTCY PREDICTION
HYBRID PROBABILITY BASED ENSEMBLES FOR BANKRUPTCY PREDICTION Chihli Hung 1, Jing Hong Chen 2, Stefan Wermter 3, 1,2 Department of Management Information Systems, Chung Yuan Christian University, Taiwan
A Comparative Study of the Pickup Method and its Variations Using a Simulated Hotel Reservation Data
A Comparative Study of the Pickup Method and its Variations Using a Simulated Hotel Reservation Data Athanasius Zakhary, Neamat El Gayar Faculty of Computers and Information Cairo University, Giza, Egypt
A New Approach to Neural Network based Stock Trading Strategy
A New Approach to Neural Network based Stock Trading Strategy Miroslaw Kordos, Andrzej Cwiok University of Bielsko-Biala, Department of Mathematics and Computer Science, Bielsko-Biala, Willowa 2, Poland:
EFFICIENT DATA PRE-PROCESSING FOR DATA MINING
EFFICIENT DATA PRE-PROCESSING FOR DATA MINING USING NEURAL NETWORKS JothiKumar.R 1, Sivabalan.R.V 2 1 Research scholar, Noorul Islam University, Nagercoil, India Assistant Professor, Adhiparasakthi College
ARTIFICIAL NEURAL NETWORKS FOR ADAPTIVE MANAGEMENT TRAFFIC LIGHT OBJECTS AT THE INTERSECTION
The 10 th International Conference RELIABILITY and STATISTICS in TRANSPORTATION and COMMUNICATION - 2010 Proceedings of the 10th International Conference Reliability and Statistics in Transportation and
Forecasting of Economic Quantities using Fuzzy Autoregressive Model and Fuzzy Neural Network
Forecasting of Economic Quantities using Fuzzy Autoregressive Model and Fuzzy Neural Network Dušan Marček 1 Abstract Most models for the time series of stock prices have centered on autoregressive (AR)
How To Use Neural Networks In Data Mining
International Journal of Electronics and Computer Science Engineering 1449 Available Online at www.ijecse.org ISSN- 2277-1956 Neural Networks in Data Mining Priyanka Gaur Department of Information and
Manjeet Kaur Bhullar, Kiranbir Kaur Department of CSE, GNDU, Amritsar, Punjab, India
Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Multiple Pheromone
Performance Evaluation of Artificial Neural. Networks for Spatial Data Analysis
Contemporary Engineering Sciences, Vol. 4, 2011, no. 4, 149-163 Performance Evaluation of Artificial Neural Networks for Spatial Data Analysis Akram A. Moustafa Department of Computer Science Al al-bayt
Impelling Heart Attack Prediction System using Data Mining and Artificial Neural Network
General Article International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347-5161 2014 INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Impelling
Equity forecast: Predicting long term stock price movement using machine learning
Equity forecast: Predicting long term stock price movement using machine learning Nikola Milosevic School of Computer Science, University of Manchester, UK [email protected] Abstract Long
Application of Neural Network in User Authentication for Smart Home System
Application of Neural Network in User Authentication for Smart Home System A. Joseph, D.B.L. Bong, D.A.A. Mat Abstract Security has been an important issue and concern in the smart home systems. Smart
SURVIVABILITY ANALYSIS OF PEDIATRIC LEUKAEMIC PATIENTS USING NEURAL NETWORK APPROACH
330 SURVIVABILITY ANALYSIS OF PEDIATRIC LEUKAEMIC PATIENTS USING NEURAL NETWORK APPROACH T. M. D.Saumya 1, T. Rupasinghe 2 and P. Abeysinghe 3 1 Department of Industrial Management, University of Kelaniya,
Cash Forecasting: An Application of Artificial Neural Networks in Finance
International Journal of Computer Science & Applications Vol. III, No. I, pp. 61-77 2006 Technomathematics Research Foundation Cash Forecasting: An Application of Artificial Neural Networks in Finance
SUCCESSFUL PREDICTION OF HORSE RACING RESULTS USING A NEURAL NETWORK
SUCCESSFUL PREDICTION OF HORSE RACING RESULTS USING A NEURAL NETWORK N M Allinson and D Merritt 1 Introduction This contribution has two main sections. The first discusses some aspects of multilayer perceptrons,
2. IMPLEMENTATION. International Journal of Computer Applications (0975 8887) Volume 70 No.18, May 2013
Prediction of Market Capital for Trading Firms through Data Mining Techniques Aditya Nawani Department of Computer Science, Bharati Vidyapeeth s College of Engineering, New Delhi, India Himanshu Gupta
BOOSTING - A METHOD FOR IMPROVING THE ACCURACY OF PREDICTIVE MODEL
The Fifth International Conference on e-learning (elearning-2014), 22-23 September 2014, Belgrade, Serbia BOOSTING - A METHOD FOR IMPROVING THE ACCURACY OF PREDICTIVE MODEL SNJEŽANA MILINKOVIĆ University
Stock Market Forecasting Using Machine Learning Algorithms
Stock Market Forecasting Using Machine Learning Algorithms Shunrong Shen, Haomiao Jiang Department of Electrical Engineering Stanford University {conank,hjiang36}@stanford.edu Tongda Zhang Department of
Design call center management system of e-commerce based on BP neural network and multifractal
Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):951-956 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Design call center management system of e-commerce
An Anomaly-Based Method for DDoS Attacks Detection using RBF Neural Networks
2011 International Conference on Network and Electronics Engineering IPCSIT vol.11 (2011) (2011) IACSIT Press, Singapore An Anomaly-Based Method for DDoS Attacks Detection using RBF Neural Networks Reyhaneh
Novelty Detection in image recognition using IRF Neural Networks properties
Novelty Detection in image recognition using IRF Neural Networks properties Philippe Smagghe, Jean-Luc Buessler, Jean-Philippe Urban Université de Haute-Alsace MIPS 4, rue des Frères Lumière, 68093 Mulhouse,
DATA MINING TECHNIQUES AND APPLICATIONS
DATA MINING TECHNIQUES AND APPLICATIONS Mrs. Bharati M. Ramageri, Lecturer Modern Institute of Information Technology and Research, Department of Computer Application, Yamunanagar, Nigdi Pune, Maharashtra,
6.2.8 Neural networks for data mining
6.2.8 Neural networks for data mining Walter Kosters 1 In many application areas neural networks are known to be valuable tools. This also holds for data mining. In this chapter we discuss the use of neural
International Journal of Computer Trends and Technology (IJCTT) volume 4 Issue 8 August 2013
A Short-Term Traffic Prediction On A Distributed Network Using Multiple Regression Equation Ms.Sharmi.S 1 Research Scholar, MS University,Thirunelvelli Dr.M.Punithavalli Director, SREC,Coimbatore. Abstract:
Data Mining Solutions for the Business Environment
Database Systems Journal vol. IV, no. 4/2013 21 Data Mining Solutions for the Business Environment Ruxandra PETRE University of Economic Studies, Bucharest, Romania [email protected] Over
Recurrent Neural Networks
Recurrent Neural Networks Neural Computation : Lecture 12 John A. Bullinaria, 2015 1. Recurrent Neural Network Architectures 2. State Space Models and Dynamical Systems 3. Backpropagation Through Time
Stock Prediction using Artificial Neural Networks
Stock Prediction using Artificial Neural Networks Abhishek Kar (Y8021), Dept. of Computer Science and Engineering, IIT Kanpur Abstract In this work we present an Artificial Neural Network approach to predict
SELECTING NEURAL NETWORK ARCHITECTURE FOR INVESTMENT PROFITABILITY PREDICTIONS
UDC: 004.8 Original scientific paper SELECTING NEURAL NETWORK ARCHITECTURE FOR INVESTMENT PROFITABILITY PREDICTIONS Tonimir Kišasondi, Alen Lovren i University of Zagreb, Faculty of Organization and Informatics,
Open Access Research on Application of Neural Network in Computer Network Security Evaluation. Shujuan Jin *
Send Orders for Reprints to [email protected] 766 The Open Electrical & Electronic Engineering Journal, 2014, 8, 766-771 Open Access Research on Application of Neural Network in Computer Network
Adaptive Demand-Forecasting Approach based on Principal Components Time-series an application of data-mining technique to detection of market movement
Adaptive Demand-Forecasting Approach based on Principal Components Time-series an application of data-mining technique to detection of market movement Toshio Sugihara Abstract In this study, an adaptive
A Wavelet Based Prediction Method for Time Series
A Wavelet Based Prediction Method for Time Series Cristina Stolojescu 1,2 Ion Railean 1,3 Sorin Moga 1 Philippe Lenca 1 and Alexandru Isar 2 1 Institut TELECOM; TELECOM Bretagne, UMR CNRS 3192 Lab-STICC;
Neural Networks for Sentiment Detection in Financial Text
Neural Networks for Sentiment Detection in Financial Text Caslav Bozic* and Detlef Seese* With a rise of algorithmic trading volume in recent years, the need for automatic analysis of financial news emerged.
Electroencephalography Analysis Using Neural Network and Support Vector Machine during Sleep
Engineering, 23, 5, 88-92 doi:.4236/eng.23.55b8 Published Online May 23 (http://www.scirp.org/journal/eng) Electroencephalography Analysis Using Neural Network and Support Vector Machine during Sleep JeeEun
Application of Artificial Neural Networks To Predict Intraday Trading Signals
Application of Artificial Neural Networks To Predict Intraday Trading Signals EDDY F. PUTRA BINUS Business School BINUS University Hang Lekir 1 no.6, Senayan, Jakarta INDONESIA [email protected] RAYMONDUS
Review on Financial Forecasting using Neural Network and Data Mining Technique
Global Journal of Computer Science and Technology Neural & Artificial Intelligence Volume 12 Issue 11 Version 1.0 Year 2012 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global
Data-stream Mining for Rule-based Access Control. Andrii Shalaginov, [email protected] 13 th of October 2014 COINS PhD seminar
Data-stream Mining for Rule-based Access Control Andrii Shalaginov, [email protected] 13 th of October 2014 COINS PhD seminar 2 / 182 OVERALL PICTURE OF PHD Work towards Data-driven Reasoning for
ACCURACY DRIVEN ARTIFICIAL NEURAL NETWORKS IN STOCK MARKET PREDICTION
ACCURACY DRIVEN ARTIFICIAL NEURAL NETWORKS IN STOCK MARKET PREDICTION Selvan Simon 1 and Arun Raoot 2 1 Asst. Professor, P. G. Dept. of Computer Sci., SNDT Women s University, Mumbai [email protected]
