R/get_stocks.R

#' Get Stocks Names
#'
#' This simple function returns a character vector containing the names of all currently listed
#' stocks in Casablanca Financial Market (CFM)
#'
#' @return A character vector containing all currently listed stocks in CFM
#'
#' @export
#'
#' @examples
#' \dontrun{get_stocks()}
#'
get_stocks <- function() {
    get_stocks_helper(with_values = FALSE)
}
blnash508/cfm documentation built on May 30, 2019, 4:31 p.m.