Gold Historical Datasets
Gold historical datasets: Daily, Monthly, and Yearly
@kaggle.nward7_gold_historical_datasets
Gold historical datasets: Daily, Monthly, and Yearly
@kaggle.nward7_gold_historical_datasets
CREATE TABLE gold_daily (
"date" TIMESTAMP,
"price" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"vol" VARCHAR,
"change" DOUBLE
);
CREATE TABLE gold_monthly (
"date" VARCHAR,
"price" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"vol" VARCHAR,
"change" DOUBLE
);
CREATE TABLE gold_yearly (
"year" BIGINT,
"average_closing_price" DOUBLE,
"year_open" DOUBLE,
"year_high" DOUBLE,
"year_low" DOUBLE,
"year_close" DOUBLE,
"annual_change" DOUBLE
);
Anyone who has the link will be able to view this.