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
This contains data files of gold historical data (USD).
Date : Date of observation
Price: The official price of the given day, month, or year
Open : Opening price on the given day, month, or year
High : Highest price on the given day, month, or year
Low : Lowest price on the given day, month, or year
Volume : Volume of transactions on the given day, month, or year
Change %: Percent change of the previous and current (day, month, or year) price.
CREATE TABLE gold_daily (
  "date" TIMESTAMP,
  "price" DOUBLE,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "vol" VARCHAR,
  "change" DOUBLE  -- Change %
);CREATE TABLE gold_monthly (
  "date" VARCHAR,
  "price" DOUBLE,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "vol" VARCHAR  -- Vol.,
  "change" DOUBLE  -- Change %
);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  -- Annual % Change
);Anyone who has the link will be able to view this.