R/q_all_stock_price.R

Defines functions q_all_stock_price

Documented in q_all_stock_price

#' q_all_stock_price
#'
#' @export

q_all_stock_price <- function(){
    url <- paste0("https://financialmodelingprep.com/api/v3/stock/real-time-price")

    jsonlite::fromJSON(url)[[1]] %>%
      dplyr::as_tibble()

  }
     
zac-garland/eqdata documentation built on April 29, 2020, 12:06 p.m.