robin_stocks
robin_stocks copied to clipboard
This is a library to use with Robinhood Financial App. It currently supports trading crypto-currencies, options, and stocks. In addition, it can be used to get real time ticker information, assess the...
Has anyone seen a way in the API to get my list of recurring investments? (Maybe add/edit them too.) These are the ones built-in to the RH app which invest...
If I try to run any function related to my own account/portfolio, I always get empty or none. I tried my own scripts as well as included example scripts... login...
When I try logging in using the following, my login fails ``` rs.robinhood.authentication.login(username=robin_user, password=robin_pass, expiresIn=86400, mfa_code=xxxxxx) ``` The response to `data = request_post(url, payload)` is `{'error': 'invalid_client'}`. I verified that...
Tried to place a limit order on DOGE but am unable to. I run the following command: ` purchase = rs.orders.order_buy_crypto_limit_by_price("DOGE", float(5), float(0.058501)) ` And the response received is "Order...
I've been doing some research on how Crypto Order pricing is managed by the Robinhood app and it seems each coin is limited to a different rounding. ETC, for example,...
When running `synk test` on my repo I get this high severity attack. It does not look like there is currently a fix for this. However, I thought the maintainers...
Now Robinhood supports trailing stop loss orders.
I see I can find the quantity of the crypto I have in my account, but can't seem to find out what I paid for it.
When I get RH crypto historicals the volume value is always 0. That is less than ideal for algo trading. `doge_history=rh.crypto.get_crypto_historicals("ETH",interval='5minute',span='hour') dh = pd.DataFrame.from_dict(doge_history) print(dh.iloc[-3:])` `begins_at open_price close_price high_price low_price...