Skip to content

BR1K/Mr.Hood

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mr. Hood

Mr. Hood is a full-stack, single-page stock trading/investment application built with Ruby on Rails and React.js. Users can invest in real companies with live market data, without spending any money. Mr. Hood's design was inspired by Robinhood's web application.

All stock data is provided by IEX's awesome API. Check out the cool work they're doing here.

The live news feed is made possible by News API, and chart rendering was done with the help of Recharts.

Features

  • Portfolio Chart: historical performance is rendered using portfolio snapshots
  • Portfolio Value: a live portfolio value is calculated using the user's holdings and current stock price
  • Top Movers : a list of daily top-moving stocks
  • Watchlist : add or remove stocks to your watchlist!
  • News Feed: View realtime general market news & stock specific news
  • Stock Chart: Historical price performance for any given stock. Users can change the chart's time range (1D, 1M, 3M, 6M, 1Y, 2Y, 5Y)
  • About Section: A detailed look at a company, including a description, and metrics such as market cap, revenue, etc.
  • Trading: Users can buy or sell shares, which will update their portfolio and buying power.
  • Peers: a list of companies similar to the current company; users can compare similar stocks

Other

  • User authorization: the handy Ruby gem bcrypt allows for secure hashing & salting and ensures authorization
  • Search: search stocks by their stock symbol
  • Realtime stock prices: Stock prices are fetched every few seconds throughout the application. API calls are made to the IEX API to ensure accurate information.
  • Useful errors: Errors are present throughout the application to assist users in navigating around. Logging in without the correct credentials will produce errors, as well as signing up a user without completed fields. Additionally, trying to create a trade without the proper holdings or buying power will notify the user.

Dashboard

dashboard

Once logged in, users are navigated to their dashboard, where they are presented with a chart of their trade history, as well as a portfolio value which is automatically re-calculated with every price change.
This page also includes several other features:

Top Movers

top movers

The Top Movers component offers users a live look at the day's most volatile stocks. Each stock card represents a single company, and includes that company's title, stock symbol, daily stock chart, and realtime stock price. Clicking on a stock card will take you to that stock's show page. This is a great way to discover new stocks to buy!

Portfolio

portfolio

This feature includes all of the user's holdings, which are each rendered as separate Portfolio Item components.
Every Portfolio Item component includes the stock symbol, live stock chart, live stock price, as well as how many shares that user owns. Buying a new stock will add to this list, while selling all of your shares in a company will remove that portfolio item.
Each stock price is fetched every few seconds so that stock prices remain accurate. In order to reduce clutter in the global state, I decided to make the API calls to IEX in in the Portfolio Item components themselves, and use each component's local state to store in the information and trigger re-rendering:
  fetchPrice(symbol) {
    fetch(`https://api.iextrading.com/1.0/stock/${symbol}/price`)
    .then(res => res.json())
    .then(
      (result) => {
        this.setState({
          price: { data: result }
        });
      },
      (error) => {
        this.setState({
          price: { error }
        });
      }
    )
  }

Search

search

The search bar at the top of the application allows users to search any stock by its symbol. Clicking on any result will take the user to that stock's page.

Watchlist

watchlist

Users also have the ability to add stocks to their watchlist, where they have easy access to their charts and live prices from the dashboard.

News

news

Scrolling to the bottom of the dashboard takes users to a live news feed, where they can read articles that might influence their trading activity. Clicking on any article takes you to the source's website.

Stock Page

stock page

The stock page offers a more detailed look at any given company. User's can change the stock chart's range for more information on the stock's history, and check out the about section for general information. All prices are rendered in realtime!
This page also includes other features:

Trading

trading

Users have the ability to buy and sell shares! Navigate to a stock show page, and use the sidebar. Buying a new new stock will add to your portfolio.

Peers

peers

Here users can check out similar companies and compare.

Technologies

  • Backend:
    • Ruby on Rails
    • ActiveRecord
    • PostgreSQL
  • Frontend:
    • React/ Redux
    • Recharts
    • IEX API
    • News API

Potential Future Features

  • Users will have the ability to search by company name as well. I'd also like to add a preview of each result company's current stock price.
  • A profile page which will include detailed trade history, as well as the ability to update user information such as username, password, and buying power.
  • A dashboard chart that updates with every trade action. The current dashboard chart is generated using seed data.

About

Robinhood inspired stock-trading full stack application using Rails, PostgreSQL, React.js, and Redux

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published