Baselight

Gold Historical Datasets

Gold historical datasets: Daily, Monthly, and Yearly

@kaggle.nward7_gold_historical_datasets

Loading...
Loading...

About this Dataset

Gold Historical Datasets

Content

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.

Tables

Gold Daily

@kaggle.nward7_gold_historical_datasets.gold_daily
  • 205.18 KB
  • 6886 rows
  • 7 columns
Loading...

CREATE TABLE gold_daily (
  "date" TIMESTAMP,
  "price" DOUBLE,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "vol" VARCHAR,
  "change" DOUBLE
);

Gold Monthly

@kaggle.nward7_gold_historical_datasets.gold_monthly
  • 24.37 KB
  • 515 rows
  • 7 columns
Loading...

CREATE TABLE gold_monthly (
  "date" VARCHAR,
  "price" DOUBLE,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "vol" VARCHAR,
  "change" DOUBLE
);

Gold Yearly

@kaggle.nward7_gold_historical_datasets.gold_yearly
  • 7.83 KB
  • 53 rows
  • 7 columns
Loading...

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
);

Share link

Anyone who has the link will be able to view this.