Balance of Payments (BOP) 2026 February

Data - IMF

Info

Last observation: Quarterly: 2025-Q4 (N = 1,447) · Annual: 2025 (N = 6,863)

Last update of .parquet: 11 aoû 2026, 18:26. Last compile: 11 aoû 2026, 19:58

Structure

Current Account Components

France, Germany, Italy

Code
BOP_2026_FEB_VINTAGE |>
  filter(INDICATOR == "CAB",
         COUNTRY %in% c("FRA", "DEU", "ITA"),
         BOP_ACCOUNTING_ENTRY == "NETCD_T",
         FREQUENCY == "A") |>
  mutate(date = as.Date(paste0(TIME_PERIOD, "-01-01"))) |>
  left_join(colors, by = c("Country" = "country")) |>
  ggplot() + scale_color_identity() + add_flags +
  geom_line(aes(x = date, y = OBS_VALUE, color = color)) +
  theme_minimal() + xlab("") + ylab("")

China, United States

Code
BOP_2026_FEB_VINTAGE |>
  filter(INDICATOR == "CAB",
         COUNTRY %in% c("CHN", "USA"),
         BOP_ACCOUNTING_ENTRY == "NETCD_T",
         FREQUENCY == "A") |>
  mutate(date = as.Date(paste0(TIME_PERIOD, "-01-01"))) |>
  left_join(colors, by = c("Country" = "country")) |>
  ggplot() + scale_color_identity() + add_flags +
  geom_line(aes(x = date, y = OBS_VALUE, color = color)) +
  theme_minimal() + xlab("") + ylab("")

Goods and Services