Money Stock Measures - H.6 - H6

Data - FRB

Info

Last observation: 17: 2026-07-06 (N = 4) · 129: 2026-06-30 (N = 8)

First observation: 129: 1959-01-31 (N = 14) · 17: 1975-01-06 (N = 12)

Last data update: 16 aoû 2026, 20:49. Last compile: 17 aoû 2026, 22:22

Nobs - Javascript

Code
H6 |>
  group_by(SERIES_NAME, CURRENCY, UNIT) |>
  summarise(Nobs = n()) |>
  left_join(H6_var$CURRENCY |> rename(CURRENCY = id), by = "CURRENCY") |>
  select(-description.default) |>
  arrange(-Nobs) |>
  print_table_conditional()

Concepts

Code
H6_struct_concepts %>%
  {if (is_html_output()) print_table(.) else .}
id Name.default
FREQ Frequency
OBS_STATUS Observation status
SERIES_NAME Series Name
OBS_VALUE Observation value
UNIT Units
ADJUSTED Seasonal Adjustment
CURRENCY Currency
UNIT_MULT Unit multiplier
TIME_PERIOD Time

UNIT_MULT

Code
H6_var$UNIT_MULT |>
  print_table_conditional()
id label.default description.default
.01 Hundredths Hundredths
.1 Tenths Tenths
1 One One
1000 Thousands Thousands
1000000 Millions Millions
100000000 Hundred millions Hundred millions
1000000000 Billions Billions
1000000000000 Trillions Trillions
1000000000000000 Quadrillions Quadrillions

CURRENCY

Code
H6 |>
  group_by(CURRENCY) |>
  summarise(Nobs = n()) |>
  left_join(H6_var$CURRENCY |> rename(CURRENCY = id), by = "CURRENCY") |>
  select(-description.default) |>
  print_table_conditional()
CURRENCY Nobs label.default
USD 44662 United States / United States Dollar

M1 in the United States

Code
H6 |>
  filter(SERIES_NAME == "M1.WM") |>
  arrange(TIME_PERIOD) |>
  ggplot() + geom_line(aes(x = TIME_PERIOD, y = OBS_VALUE)) +
  theme_minimal() + xlab("") + ylab("") +
  scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) + 
  scale_y_log10()