# Create a sequence of dates
dates <- seq(as.Date("2024-01-01"), by = "day", length.out = 30)
dates |> str()
#> Date[1:30], format: "2024-01-01" "2024-01-02" "2024-01-03" "2024-01-04" "2024-01-05" ...
library(JuliaCall)
d <- julia_eval("using Dates;...