You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think Robinhood api also exposed technical indicator data. e.g. RSI, but I didn't find such a key in the robin_stocks api/dic returned, wondering if this is a missing feature/api, or just a hidden gem
Below is how to get it from Robinhood API's get_fundamentals()
`import robin_stocks as r
Authenticate with your Robinhood API credentials
robinhood = r.login('username', 'password')
Get the RSI for the stock symbol "AAPL"
stock_data = robinhood.get_fundamentals('AAPL')
Access the RSI value from the returned data
rsi_value = stock_data['rsi_14']
print(f"RSI for AAPL: {rsi_value}")
`
The text was updated successfully, but these errors were encountered:
yidea
changed the title
Missing technical indicator info from API .e.g RSI
Missing technical indicator data from API .e.g RSI/SMA
Feb 14, 2025
I think Robinhood api also exposed technical indicator data. e.g. RSI, but I didn't find such a key in the robin_stocks api/dic returned, wondering if this is a missing feature/api, or just a hidden gem
Below is how to get it from Robinhood API's get_fundamentals()
`import robin_stocks as r
Authenticate with your Robinhood API credentials
robinhood = r.login('username', 'password')
Get the RSI for the stock symbol "AAPL"
stock_data = robinhood.get_fundamentals('AAPL')
Access the RSI value from the returned data
rsi_value = stock_data['rsi_14']
print(f"RSI for AAPL: {rsi_value}")
`
The text was updated successfully, but these errors were encountered: