Using 5 different investment strategies, determine how much to invest in certain stocks. This is implemented using PyQt GUI library and yfinance API.
GUI form and info popup
Stock Calculation Output
Make sure to install the dependencies
PyQt5
pip install PyQt5==5.9.2
yfinance
pip install yfinance
Create your own branch
git pull main
git checkout -b name-component_name
for example: git checkout -b philip-value_investing
After making changes and have a working component:
git add .
git commit -m 'commit message'
git push origin branch-name
Merging to main:
git checkout main
git pull origin main
git merge branch-name
git push origin main