XAU/USD Gold Price Historical Data (2004-2024)
gold price history from 2004 to 2024 with multiple timeframes
@kaggle.novandraanugrah_xauusd_gold_price_historical_data_2004_2024
gold price history from 2004 to 2024 with multiple timeframes
@kaggle.novandraanugrah_xauusd_gold_price_historical_data_2004_2024
Dataset historical price data for XAU/USD (gold vs USD) from 2004 to 2024, captured across multiple timeframes including 5-minute, 15-minute, 30-minute, 1-hour, 4-hour, daily, weekly, and monthly intervals. Dataset includes Open, High, Low, Close prices, and Volume data.
CREATE TABLE xau_15m_data_2004_to_2024_20_09 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_1d_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_1h_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_1month_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_1w_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_30m_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_4h_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE xau_5m_data_2004_to_2024_09_20 (
  "date" TIMESTAMP,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);Anyone who has the link will be able to view this.