Show Code
if (data_loaded && !is.null(universe)) {
cat("Snapshot generated at:", format(snapshot_info$generated_at), "\n")
cat("Source:", snapshot_info$source, "\n\n")
cat("Tickers:", nrow(universe), "\n")
}Snapshot generated at: 2025-12-22 16:38:06
Source: curated
Tickers: 20
Show Code
if (data_loaded && !is.null(history) && nrow(history) > 0) {
cat("Total rows:", nrow(history), "\n")
cat("Date range:", format(min(history$date)), "to", format(max(history$date)), "\n")
}Total rows: 1432620
Date range: 2008-01-02 to 2025-12-19