#' @title ETF Country Exposure
#'
#' @description Get exchange traded country exposure
#'
#'@importFrom tibble tibble
#'
#' @return
#' @export
#'
#' @examples
#' forex_exchanges()
forex_exchanges <- function(...){
url <- finnhub_endpoint('forex_exchanges')
df <- retry_get(url,
query = list(token = finnhub_key())
)
df %>%
tibble::tibble(forex_exchange = .)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.