R/lc_AvailableCash.R

#' Return investor's available cash
#'
#' Retrieves the available cash in the user's account. Cash 
#' commited to open buy orders is excluded from the total.
#'
#' @inheritParams lc_AccountSummary
#' @export
lc_AvailableCash<- function(LC_CRED=NULL){

    LC_CRED<-CheckCred(LC_CRED)

    searchURL<- MakeURL(LC_CRED$investorID, "availablecash")

    LC_GET(searchURL, LC_CRED$key, margin=T)


    }

Try the LendingClub package in your browser

Any scripts or data that you put into this service are public.

LendingClub documentation built on May 1, 2019, 9:14 p.m.