Quandl - Financial, Economic and Alternative Data - quandl

Data

Last observation: 9 févr. 2021 (N = 1)

First observation: 7 janv. 2014 (N = 1)

Last data update: 01 août 2026, 14:40

Last compile: 04 sept. 2026, 01:28

Datasets

id label html
api Application Programming Interface [html](api.html)
BCHARTS Bitcoins [html](BCHARTS.html)
BCHAIN Blockchain [html](BCHAIN.html)
BOE Bank of England [html](BOE.html)
BUNDESBANK Bundesbank [html](BUNDESBANK.html)
ECB European Central Bank [html](ECB.html)
ECONOMIST The Economist [html](ECONOMIST.html)
FRED Federal Reserve Bank Data [html](FRED.html)
MULTPL Multiples [html](MULTPL.html)

List of variables

BCHARTS

Code
BCHARTS |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
BCHARTS/BITSTAMPEUR 1009
BCHARTS/KRAKENUSD 2582

BCHAIN

Code
BCHAIN |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
BCHAIN/MKPRU 4422
BCHAIN/MKTCP 4421

BOE

Code
BOE |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
BOE/XUDLBK35 4226
BOE/XUDLBK68 3848
BOE/XUDLBK73 3848
BOE/XUDLCDD 11496
BOE/XUDLGBD 11496
BOE/XUDLJYD 11496
BOE/XUDLSFD 11496

BUNDESBANK

Code
BUNDESBANK |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
BUNDESBANK/BBEX3_D_ARS_USD_CA_AC_000 4508
BUNDESBANK/BBK01_WT5011 1990
BUNDESBANK/BBK01_WU5007 521
BUNDESBANK/BBK01_WU5009 545
BUNDESBANK/BBK01_WU5012 468

ECB

Code
ECB |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
ECB/EURUSD 5494

FRED

Code
FRED |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
FRED/DEXBZUS 6389

MULTPL

Code
MULTPL |>
  group_by(symbol) |>
  summarise(Nobs = n()) %>%
  {if (is_html_output()) print_table(.) else .}
symbol Nobs
MULTPL/SP500_DIV_YIELD_MONTH 1799
MULTPL/SP500_PE_RATIO_MONTH 1800

Different types of bitcoin

Code
BCHARTS |>
  ggplot() + geom_line(aes(x = date, y = Open, color = symbol)) +
  theme_minimal() + xlab("") + ylab("Bitcoin Price") +
  scale_x_date(breaks ="6 months",
               labels = date_format("%Y-%m")) +
  scale_y_continuous(breaks = seq(0, 40000, 5000),
                     labels = dollar_format(ac = 1)) +
  scale_color_manual(values = viridis(3)[1:2]) +
  theme(legend.position = c(0.2, 0.9),
        legend.title = element_blank())