get_currency | R Documentation |
This function lets the user download historical currency exchange rate between two currencies.
get_currency(
currency_pair,
from = Sys.Date() - 99,
to = Sys.Date(),
fill = FALSE,
...
)
currency_pair |
Character. Which currency exchange do you wish to get the history from? i.e, USD/COP, EUR/USD... |
from |
Date. From date |
to |
Date. To date |
fill |
Boolean. Fill weekends and non-quoted dates with previous values? |
... |
Additional parameters. |
data.frame. Result of fetching online data for currency_pair
grouped by date.
# For today (or any one single date)
get_currency("USD/COP", from = Sys.Date())
# For multiple dates
get_currency("EUR/USD", from = Sys.Date() - 7, fill = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.