Bitcoin Prices - BCHARTS

Data

Info

# **Last observation**: 2021-02-09 (N = 1)
# 
# **First observation**: 2014-01-07 (N = 1)
# 
# **Last data update**: 01 aoû 2026, 14:40. **Last compile**: 15 aoû 2026, 15:21

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 ="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())