This repository contains the implementation of the paper "An Intelligent Technique for Stock Market Prediction" by Mohammad Mekayel Anik, Mohammad Shamsul Arefin, and M. Ali Akber Dewan. The system uses historical data from the Dhaka Stock Exchange (DSE) and Chittagong Stock Exchange (CSE) to predict stock prices using machine learning techniques, primarily focusing on linear regression.
- Introduction
- System Architecture
- Installation
- Usage
- Modules
- Experimental Results
- Contributors
- License
The stock market prediction system is designed to assist investors in making informed decisions by predicting future stock prices based on historical data. The system scrapes data from stock market websites, preprocesses it, and applies machine learning models to make predictions.
- Scrapes real-time data from DSE and CSE.
- Predicts stock prices using linear regression.
- User-friendly interface for querying stock prices.
- Supports dynamic input of stock symbols and prediction queries.
The system is composed of three main modules:
- Data Preprocessing: Scrapes data from DSE and CSE websites using
BeautifulSoup, and stores it in a database for further analysis. - Prediction: A linear regression model is used to predict stock prices based on the historical data stored in the database.