Robinhood on Rails is a simple web-based dashboard for the free stock trading phone app Robinhood. Users can buy, sell, and research stocks, all for no charge. You're presented with your autorefreshing portfolio after logging in: (more screenshots here.)
I am not affiliated with Robinhood or its associates. I am in no way responsible for any losses incurred through using this code or application. This app relies on the private API as found here (special thanks to sanko for providing documentation). It isn't recommended to use this since the API is private and can change unexpectedly at any time, and is not officially supported. Using any kind of unpublished API for investing is risky, and you should thoroughly review any code involving any kind of money or investment published on the web to ensure the creator isn't doing something malicious. It's your money, after all. Your safest bet is to use the sanctioned phone app. Having said that, creating this app has been a lot of fun and I use it a lot more than I use the phone app.
You have the choice of a basic installation or Docker (see instructions below).
This is a basic Rails project. You can install Ruby on Rails (and RVM) by visiting the RVM install page. If you already have ruby on rails set up, simply clone this project. Then run the basic steps to run the project like you would any other rails project:
rvm install 2.3.5
rvm use 2.3.5
bundle update
bundle install
bundle exec rake db:create db:migrate
bundle exec rails server
This repository comes with a Dockerfile to easily set up a server with minimal configuration. To build the image, run:
$ git clone https://github.com/bcwik9/robinhood-on-rails.git
$ cd robinhood-on-rails
$ docker build --tag robinhood-on-rails .
Then you can run the server:
$ docker run -dt -p 3000:3000 robinhood-on-rails
This will run the server on your host-machine's port 3000.
I am not affiliated with Robinhood or any of its associates. This is just a project I find fun. More info at bencwik.com
Thanks to Jeffrey Smith for his designs which I based a lot of the front end work off of. Thanks to sanko for their work documenting Robinhood's API. Last but not least thanks to Robinhood for their app!