https://github.com/maxdemaio/finance
An application via which you can manage portfolios of stocks, check stock prices, and buy/sell stocks using IEX's API.
https://github.com/maxdemaio/finance
finance flask iex-api python
Last synced: about 2 months ago
JSON representation
An application via which you can manage portfolios of stocks, check stock prices, and buy/sell stocks using IEX's API.
- Host: GitHub
- URL: https://github.com/maxdemaio/finance
- Owner: maxdemaio
- License: mit
- Created: 2020-05-28T02:01:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T10:02:06.000Z (over 3 years ago)
- Last Synced: 2025-09-01T01:45:35.064Z (10 months ago)
- Topics: finance, flask, iex-api, python
- Language: Python
- Homepage:
- Size: 703 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finance
### An application via which you can manage portfolios of stocks, check stock prices, and buy/sell stocks by querying IEX for prices.

## Description
Through the use of IEX's API, we can obtain stock quotes by providing a stock's ticker symbol. After registering for an account, a user can log in and is given a fake $10,000 to spend. This investment can be used to buy/sell stocks and observe their values fluctuate over time since IEX provides us with real time prices.
* **Index:** The homepage displays an HTML table of the user's investments which by default starts with $10,000. Afterwards, the table displays whichever stocks the user owns, the current cash balance, and the total portfolio value.
* **Quote:** The quote route allows a user to look up a stock's current price.
* **Buy:** The buy route allows a user to purchase stocks.
* **Sell:** The sell route allows a user to sell stocks.
* **Graph:** The graph route implements Chart.js to display a pie chart of the investment allocation of the user's portfolio.
* **History:** The history route displays a buying/selling history of all stocks purchased and sold in order by date.