#' Get all stock symbols from IEXTrader
#'
#' @import magrittr curl jsonlite
#' @export
get_symbols = function() {
url <- iextrader_endpoints("symbols")
dta <- iextrader_api(url)
dta <- fromJSON(dta)
dta <- dta[-grep("#", dta$symbol), ]
return(dta)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.