C$50 FINANCE
Technologies
FLASK / SQLite / Talend Studio / Vanilla JS
Grapefruit slice atop a pile of other slices

Finance is one of CS50's assignments. It is a web app via which you can manage portfolios of stocks. Not only will this tool allow you to check real stocks’ actual prices and portfolios’ values, but it will also let you buy and sell stocks by querying IEX for stocks’ prices.

My design

My personal touch to the application was to add a lookup functionality for stock names. Using ETL software (Talend Studio), I fetched 10k rows of stock data and uploaded it to applications SQLite DB. I have also created an API suggestions endpoint. Client retrieves the data with a dedicated JS script, which fetches the five best matches for the lookup phrase on each keystroke of the user.

Designing a DB from scratch, was another interesting part of the project. To achieve clean architecture, I followed the database normalization process to.

API specification

register

quote

buy

index

Displays an HTML table summarizing, for the user currently logged in, which stocks the user owns, the numbers of shares owned, the current price of each stock, and the total value of each holding (i.e., shares times price). Also display the user’s current cash balance along with a grand total (i.e., stocks’ total value plus cash).

sell

history