Golden Feature(2005-2024)
A set of 11 characteristics related to gold prices
@kaggle.lixiangwakeheart_yqyqyq
A set of 11 characteristics related to gold prices
@kaggle.lixiangwakeheart_yqyqyq
This dataset, which includes 10 variables affecting gold prices, is sourced from historical data on Investing.com, spanning the period from January 3, 2005, to August 26, 2024. The included variables are:
1.gold closing price,
2.opening price,
3.high price,
4.low price,
5.U.S. Dollar Index,
6.crude oil price,
7.Nasdaq Index,
8.silver price,
9.10-year Treasury bond yield,
10.S&P 500 Index.
CREATE TABLE gold_feature (
"date" TIMESTAMP,
"gold_close" DOUBLE,
"gold_open" DOUBLE,
"gold_high" DOUBLE,
"gold_low" DOUBLE,
"usd_index" DOUBLE,
"wti_crude" DOUBLE,
"silver" DOUBLE,
"bond_yield" DOUBLE,
"ndq" DOUBLE,
"spx" DOUBLE
);
Anyone who has the link will be able to view this.