Get portfolio summaries related to your RobinHood Account
Source:R/get_portfolios.R
      get_portfolios.RdReturns a dataframe of portfolio summaries for a specific period of time. Default is current day.
Arguments
- RH
 object of class RobinHood
- interval
 (string) Interval of time to aggregate to (examples: hour, day, week, month)
- span
 (string) Period of time you are interested in (examples: day, week, month, year)
Examples
if (FALSE) {
# Login in to your RobinHood account
RH <- RobinHood("username", "password")
get_portfolios(RH)
get_portfolios(RH, interval = "day", span = "3month")
}