Currency conversion is only available on paid plans.
fixer_convert(from, to, amount = 1, date = NULL)
from | Symbol of currency to convert from. |
---|---|
to | Symbol of currency to convert to. |
amount | The numeric value of the |
date | Optional variable. A date in YYYY-MM-DD format, or any value
that can be coerced to YYYY-MM-DD format with |
A list containing the value of the conversion and the exchange rate.
# NOT RUN { x <- fixer_convert(from = "GBP", to = "JPY", amount = 25) # }