Baselight

Gold Price & Relevant Metrics

UCSB - PSTAT 131 Final Project

@kaggle.cvergnolle_gold_price_and_relevant_metrics

Gold Price Prediction
@kaggle.cvergnolle_gold_price_and_relevant_metrics.gold_price_prediction

  • 86.93 KB
  • 676 rows
  • 21 columns
date

Date

price_2_days_prior

Price 2 Days Prior

price_1_day_prior

Price 1 Day Prior

price_today

Price Today

price_tomorrow

Price Tomorrow

price_change_tomorrow

Price Change Tomorrow

price_change_ten

Price Change Ten

std_dev_10

Std Dev 10

twenty_moving_average

Twenty Moving Average

fifty_day_moving_average

Fifty Day Moving Average

n_200_day_moving_average

200 Day Moving Average

monthly_inflation_rate

Monthly Inflation Rate

effr_rate

EFFR Rate

volume

Volume

treasury_par_yield_month

Treasury Par Yield Month

treasury_par_yield_two_year

Treasury Par Yield Two Year

treasury_par_yield_curve_rates_10_yr

Treasury Par Yield Curve Rates (10 Yr)

dxy

DXY

sp_open

SP Open

vix

VIX

crude

Crude

Wed Aug 07 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2405.872384.92385.8330.155077632414.7452368.29482189.807835.33965.543.96103.375293.1324.7772.84
Tue Aug 06 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2442.742405.872384.92385.830.9329.423936232414.15252367.79162187.856335.33895.53.993.9102.785206.4233.7173.86
Mon Aug 05 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2447.172442.742405.872384.9-20.9728.341301252413.23052367.15842185.9634535.33865.523.893.78103.225151.1423.3974.21
Fri Aug 02 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2447.232447.172442.742405.87-36.8728.616660822411.0922365.7252183.856435.33895.543.883.8104.315376.6320.5276.87
Thu Aug 01 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2411.092447.232447.172442.74-4.4326.084795832408.5672363.56242181.5578535.33835.554.163.99104.075537.8416.278.59
Wed Jul 31 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2382.472411.092447.232447.17-0.0625.30719232404.1032362.28362179.1864535.33785.494.294.09104.435505.5916.6675.24
Tue Jul 30 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2387.112382.472411.092447.2336.1428.431801072399.76152361.79582176.8184535.33875.54.354.15104.565478.7316.6475.91
Mon Jul 29 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2365.372387.112382.472411.0928.6234.908632822395.792362.13022174.6691535.33905.54.364.17104.335476.5516.5977.3
Fri Jul 26 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2400.122365.372387.112382.47-4.6433.472691042393.34452362.75962172.6408535.33855.494.364.2104.365433.6717.9778.35
Thu Jul 25 2024 00:00:00 GMT+0000 (Coordinated Universal Time)2409.862400.122365.372387.1121.7431.991884062390.32552362.62382170.4592535.33885.494.414.27104.385428.718.4177.5

CREATE TABLE gold_price_prediction (
  "date" TIMESTAMP,
  "price_2_days_prior" DOUBLE,
  "price_1_day_prior" DOUBLE,
  "price_today" DOUBLE,
  "price_tomorrow" DOUBLE,
  "price_change_tomorrow" DOUBLE,
  "price_change_ten" DOUBLE,
  "std_dev_10" DOUBLE,
  "twenty_moving_average" DOUBLE,
  "fifty_day_moving_average" DOUBLE,
  "n_200_day_moving_average" DOUBLE,
  "monthly_inflation_rate" DOUBLE,
  "effr_rate" DOUBLE,
  "volume" BIGINT,
  "treasury_par_yield_month" DOUBLE,
  "treasury_par_yield_two_year" DOUBLE,
  "treasury_par_yield_curve_rates_10_yr" DOUBLE,
  "dxy" DOUBLE,
  "sp_open" DOUBLE,
  "vix" DOUBLE,
  "crude" DOUBLE
);

Share link

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