wang-ye / robinhood-crypto

Robinhood Crypto

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Robinhood Crypto APIs

This repo provides several key APIs for Robinhood Crypto, including authorization, quotes, historicals, order placement and status.

How to Use

Before using this package, please turn on 2FA in your robinhood account. You will also get notifications for inputting your MFA code (6-digits). Currently it assumes you use SMS for the MFA code. Other authentication approaches might be supported in the future.

  1. This package goes with Python 3. I use anaconda for the python version management. This will also configure the pip accordingly.
conda create -n py36-rb python=3.6 anaconda
  1. To install the package locally, you can run
cd robinhood-crypto
pip install -e .
  1. Some sample usage with the package.
from robinhood_crypto_api import RobinhoodCrypto
# user/password are your Robinhood login credentials
r = RobinhoodCrypto(user, password)
# You are likely to get get shell notifications for inputting your MFA 6-digit codes here.
# Just type in the number you get from SMS.
# Current BTC quotes.
quote_info = r.quotes()
# Market order to buy/sell BTC
market_order_info = r.trade(
    'BTCUSD',
    price=round(float(quote_info['mark_price']) * 1.005, 2),
    quantity="0.00005",
    side="buy",
    time_in_force="gtc",
    type="market"
)
  1. To uninstall, you can run
pip uninstall Robinhood-Crypto-API

About

Robinhood Crypto

License:MIT License


Languages

Language:Python 100.0%