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: 16 sept. 2026, 21:12
BCHARTS |>
ggplot() + geom_line(aes(x = date, y = Open, color = symbol)) +
theme_minimal() + xlab("") + ylab("Bitcoin Price") +
scale_x_date(breaks ="1 year",
labels = date_format("%b %Y")) +
scale_y_continuous(breaks = seq(0, 40000, 5000),
labels = dollar_format(ac = 1)) +
scale_color_manual(values = viridis(4)[1:3]) +
theme(legend.position = c(0.2, 0.9),
legend.title = element_blank())