/Stock-Price-Prediction

stock price prediction using supervised learning methods

Primary LanguagePython

CMPE 257 - Machine Learning - Individual Project

Stock Market Predictor using Supervised Learning

Aim

To examine a number of different techniques to predict future stock prices. We do this by applying supervised learning methods for stock price forecasting by interpreting the seemingly chaotic market data.

Setup Instructions

$ pip install -r requirements.txt
$ python3 src/preprocessing.py
$ python3 src/featureSelection.py
$ python3 src/normalizeInterpolate.py
$ python3 src/regression.py

Methodology

  1. Pre-processing and Cleaning
  2. Feature Selection
  3. Data Normalization
  4. Analysis of various supervised learning methods
  5. Conclusions

Datasets used

  1. http://www.nasdaq.com/
  2. https://in.finance.yahoo.com
  3. https://www.google.com/finance

References