Robinhood

class pandas_datareader.robinhood.RobinhoodHistoricalReader(symbols, start=None, end=None, retry_count=3, pause=0.1, timeout=30, session=None, freq=None, interval='day', span='year')

Read historical values from Robinhood

Parameters:
  • symbols ({str, List[str]}) – String symbol of like of symbols
  • start (None) – Ignored. See span and interval.
  • end (None) – Ignored. See span and interval.
  • retry_count (int, default 3) – Number of times to retry query request.
  • pause (float, default 0.1) – Time, in seconds, of the pause between retries.
  • session (Session, default None) – requests.sessions.Session instance to be used
  • freq (None) – Quotes are near real-time and so this value is ignored
  • interval ({'day' ,'week', '5minute', '10minute'}) – Interval between historical prices
  • span ({'day', 'week', 'year', '5year'}) – Time span relative to now to retrieve. The available spans are a function of interval. See notes

Notes

Only provides up to 1 year of daily data.

The available spans are a function of interval.

  • day: year
  • week: 5year
  • 5minute: day, week
  • 10minute: day, week
close()

Close network session

params

Parameters to use in API calls

read()

Read data from connector

url

API URL

class pandas_datareader.robinhood.RobinhoodQuoteReader(symbols, start=None, end=None, retry_count=3, pause=0.1, timeout=30, session=None, freq=None)

Read quotes from Robinhood

Parameters:
  • symbols ({str, List[str]}) – String symbol of like of symbols
  • start (None) – Quotes are near real-time and so this value is ignored
  • end (None) – Quotes are near real-time and so this value is ignored
  • retry_count (int, default 3) – Number of times to retry query request.
  • pause (float, default 0.1) – Time, in seconds, of the pause between retries.
  • session (Session, default None) – requests.sessions.Session instance to be used
  • freq (None) – Quotes are near real-time and so this value is ignored
close()

Close network session

params

Parameters to use in API calls

read()

Read data from connector

url

API URL