Skip to content

A web app that can teach users how the stock market works, trade virtual stocks, and view predictions of stocks

Notifications You must be signed in to change notification settings

Abhiek187/how-to-stock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to Stock

stock graphs

A web app that can teach users how the stock market works, trade virtual stocks, and view predictions of stocks

How to Run

After cloning this repo and installing Django, run the following commands:

  1. Create a folder for the virtual environment: python3 -m venv <folder-name>
  2. Activate the virtual environment: source <folder-name>/bin/activate
  3. Install all python dependencies: pip3 install -r requirements.txt
  4. Head into the stockhelper directory: cd stockhelper
  5. Create the SQLite databases: python3 manage.py migrate
  6. Run the Django server: python3 manage.py runserver
  7. Open localhost:8000/stockapp in your browser.
  8. When done, press CTRL/CMD-C and deactivate the virtual environment: deactivate