An open API service indexing awesome lists of open source software.

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.

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.

![](/static/finance.gif)

## 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.