Stock Tracker is an interactive data visualization application developed in Python, with the help of Dash , yfinance and Pandas
It uses yfinance to get intraday trading data of any NASDAQ listed company.
It takes the ticker symbol of that company as input and price fluctuations till current date are plotted on an interactive graph provided by plot.ly.
Other than displaying current price, open price, high, low and volume of that stock, it also calculates percentage change of price in the last one-day interval.
The interface is created using Litera, a bootstrap theme from Bootswatch.
- Python
- Dash
- Plot.ly
- Docker
- yfinance
Install docker and docker-compose.
- Change directory to
docker
.
cd docker
- Build docker service
stock-tracker
using docker compose.
docker-compose build
- Start docker service
docker-compose up
- Visit
localhost:8050
in your web browser.