/stock_market_prediction

a Django app to predict the US stock market prices based on the news using a machine learning model

Primary LanguageJupyter NotebookMIT LicenseMIT

stock market prediction

Developing guide:

1. download the repository:

$ git clone https://github.com/aalarifi2016/stock_market_prediction.git

2. Install the requirements:

$ pip install -r requirements.txt

3. migrate:

every time you change the code, you should use this command:

$ python3 manage.py makemigration
$ python3 manage.py migrate

4. run server:

$ python3 manage.py runserver

5. create a new app:

to create a new app, you have to use the command below. remember that a new app means a new module or component in the project.

$ python3 manage.py startapp your_app