Gold Prices For 5 Years | Financial Predictions
Predict Gold Prices using Time Series Analysis
@kaggle.kusumakar_gold_prices_for_5_years_financial_predictions
Predict Gold Prices using Time Series Analysis
@kaggle.kusumakar_gold_prices_for_5_years_financial_predictions
This dataset provides historical data on gold prices , covering the time series of daily gold prices over 5years. Each record typically includes the following columns:
Date - The specific date of the recorded price.
Open - The price of gold at the beginning of the trading day.
High - The highest recorded price of gold during the trading day.
Low - The lowest recorded price of gold during the trading day.
Close - The final price of gold at the close of trading.
Adj Close - The closing price adjusted for dividends and stock splits.
Volume - The number of gold-related assets traded on that day (if available).
CREATE TABLE gold_prices (
  "date" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT,
  "dividends" DOUBLE,
  "stock_splits" DOUBLE,
  "capital_gains" DOUBLE
);Anyone who has the link will be able to view this.