Finance, a web app via which you can manage portfolios of stocks. Not only will this tool allow you to check real time stocks actual prices and portfolios values, it will also let you buy and sell stocks by querying IEX API for stocks’ prices. Also you can add money to your account.
Tech stack - Python, Flask, HTML, CSS, Bootstrap, sqlite3.
- You can check the current stock price of the stock by entering the stock's symbol.
- Example: NFLX(netflix), META(facebook), AMZN(amazon).
- You can buy any stock by entering the stock's symbol and the number of shares you wana buy.
- Example: NFLX(netflix) and 3 shares.
- You can sell stock by selecting the stock's symbol from the dropdown and the number of shares you wana sell.
- Example: AMZN(amazon) and 3 shares.
- It will show you all the transactions(buy and sell) you had done in the past.
- You can add money to your account as much you want :-)>
- Firstly clone the project!
- Enter
pip install -r requirements.txtin terminal. - Enter
flask runin terminal. - Open the localhost url shown in terminal and you are ready to go ;-)