- Solve real problems with our hands-on interface
- Progress from basic puts and calls to advanced strategies

Posted January 20, 2026 at 10:36 am
The article “Uncertainty Analysis: Gold vs. Bitcoin” was originally posted on DataGeeek blog.
Deutsche Bank Research Institute stated in its published report that Bitcoin has undergone a process similar to what gold experienced over the past 100 years.
According to the report, Bitcoin’s increasing adoption and reduced volatility may transform it into a reserve asset that central banks could hold by 2030.
The uncertainty graph below confirms the analysis mentioned above. Especially over the last two years, gold and bitcoin have converged in terms of monthly returns distribution.

Source: Yahoo Finance
Chart Code:
library(tidyverse)
library(tidyquant)
library(ggdist)
#Gold
df_gold <-
tq_get("GC=F") %>%
tq_transmute(select = close,
mutate_fun = periodReturn,
period = "monthly",
col_rename = "gold_returns") %>%
drop_na()
#Bitcoin
df_btc <-
tq_get("BTC-USD") %>%
tq_transmute(select = close,
mutate_fun = periodReturn,
period = "monthly",
col_rename = "btc_returns") %>%
drop_na()
#Merging the datasets
df_merged <-
df_gold %>%
left_join(df_btc) %>%
filter(date >= as.Date("2020-01-01")) %>%
drop_na() %>%
pivot_longer(-date) %>%
mutate(year = year(date) %>% as_factor())
#Uncertainty Distribution Plot
df_merged %>%
ggplot(aes(y = value,
x = year,
fill = name)) +
stat_slab(aes(thickness = after_stat(pdf*n)), scale = 0.7) +
stat_dots(side = "bottom",
scale = 0.7,
slab_linewidth = NA) +
scale_y_continuous(labels = scales::percent) +
scale_fill_manual(values = c("darkorange","goldenrod")) +
labs(x = "",
y = "",
fill = "",
title = "Comparison of Monthly Returns: <span style = 'color:goldenrod;'>Gold</span> vs. <span style = 'color:darkorange;'>Bitcoin</span>") +
theme_minimal(base_family = "Roboto Slab",
base_size = 20) +
theme(axis.text = element_text(face = "bold"),
plot.title = ggtext::element_markdown(size = 18,
hjust = 0.5,
face = "bold"),
axis.text.x = element_text(angle = 45,
hjust = 1,
vjust = 1),
legend.position = "none",
plot.background = element_rect(fill = "azure", color = "azure"),
panel.background = element_rect(fill = "snow", color = "snow"))Information posted on IBKR Campus that is provided by third-parties does NOT constitute a recommendation that you should contract for the services of that third party. Third-party participants who contribute to IBKR Campus are independent of Interactive Brokers and Interactive Brokers does not make any representations or warranties concerning the services offered, their past or future performance, or the accuracy of the information provided by the third party. Past performance is no guarantee of future results.
This material is from DataGeeek and is being posted with its permission. The views expressed in this material are solely those of the author and/or DataGeeek and Interactive Brokers is not endorsing or recommending any investment or trading discussed in the material. This material is not and should not be construed as an offer to buy or sell any security. It should not be construed as research or investment advice or a recommendation to buy, sell or hold any security or commodity. This material does not and is not intended to take into account the particular financial conditions, investment objectives or requirements of individual customers. Before acting on this material, you should consider whether it is suitable for your particular circumstances and, as necessary, seek professional advice.
Trading in digital assets, including cryptocurrencies, is especially risky and is only for individuals with a high risk tolerance and the financial ability to sustain losses. Eligibility to trade in digital asset products may vary based on jurisdiction.
U.S. Spot Gold trading through IB LLC accounts is only available to legal residents of the United States that do not reside in Arizona, Montana, New Hampshire, and Rhode Island.
Join The Conversation
For specific platform feedback and suggestions, please submit it directly to our team using these instructions.
If you have an account-specific question or concern, please reach out to Client Services.
We encourage you to look through our FAQs before posting. Your question may already be covered!