A single-page web app, built with Dash, that retrieves stock information by calling Yahoo Finance's API based on the given ticker. It displays the company information, current stock price, and creates a chart of its historical prices.
git clone https://github.com/adphuong/StocksDashboard.git
cd StocksDashboard
Create a new environment
virtualenv <my_env_name> -p /usr/bin/python3.8
Activate the new environment
source <my_env_name>/bin/activate
pip install -r requirements.txt
In a terminal, run the main app
python3 app.py
In another terminal, run the microservice
python3 historicalPricesRetrieval.py