Learn R Programming

bbk (version 0.11.0)

cnb_fx_other_rates: Fetch Czech National Bank (CNB) exchange rates of other currencies

Description

Retrieve the monthly exchange rate fixing for less commonly traded ("other") currencies from the CNB API. These currencies are not part of the daily fixing returned by cnb_fx_rates().

Usage

cnb_fx_other_rates(year_month = NULL, year = NULL, lang = "EN")

Value

A data.table::data.table() with the requested exchange rates. The rate is the amount of Czech koruna per amount units of the foreign currency.

Arguments

year_month

(NULL | character(1))
The month to query in "YYYY-MM" format, returning rates for all currencies in that month. If NULL, the latest available month is returned. Mutually exclusive with year. Default NULL.

year

(NULL | integer(1))
A calendar year, returning rates for all currencies in every month of that year. Mutually exclusive with year_month. Default NULL.

lang

(character(1))
Language for the country and currency names, either "EN" or "CZ". Default "EN".

See Also

Other data: bbk_data(), bbk_series(), bde_data(), bde_latest(), bdf_codelist(), bdf_data(), bdf_dataset(), bdp_data(), bis_data(), boc_data(), boe_data(), boj_data(), cnb_czeonia(), cnb_data(), cnb_fx_rates(), cnb_pribor(), ecb_data(), nbp_fx_rates(), nbp_gold(), nob_data(), onb_data(), snb_data(), srb_cross_rates(), srb_data()

Examples

Run this code
# \donttest{
# latest month for all other currencies
cnb_fx_other_rates()

# a specific month
cnb_fx_other_rates(year_month = "2024-01")

# all months of a given year
cnb_fx_other_rates(year = 2024L)
# }

Run the code above in your browser using DataLab