A simple full-stack app to visualize daily returns of the MAG7 stocks (MSFT, AAPL, GOOGL, AMZN, NVDA, META, TSLA) using data from yfinance
Visit here
- Install nvm
- Install node
- Install yarn 4.7.0
nvm install <node_version>
nvm use <node_version>
npm install -g yarn
yarn set version 4.7.0
First things first, install the libraries:
yarn install --immutableThen, run the development server:
yarn devOpen http://localhost:5173 with your browser to see the result.
First off ensure that you have Python 3+ installed on your computer
Set up virtual environment
python3 -m venv .venv
Activate virtual environment
source .venv/bin/activate
Install Python libraries
pip install -r requirements.txt
Run Python backend
python3 main.py