OTC derivatives outstanding - OTC

Data - BIS

Code
OTC <- read_parquet("OTC.parquet")

Info

Last observation: H: 2019-01-01 (N = 4904)

First observation: H: 1998-01-01 (N = 2337)

Last data update: 25 jul 2026, 10:03. Last compile: 17 aoû 2026, 23:26

Structure

iso3c, iso2c, Borrowers’ country

Code
OTC |>
  arrange(iso3c, date) |>
  group_by(iso3c, iso2c, `Derivatives reporting country`) |>
  summarise(Nobs = n(),
            start = first(date),
            end = last(date)) |>
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}