Investment Fund
Information about assets that you can invest in
@kaggle.karthikbhandary2_investment_fund
Information about assets that you can invest in
@kaggle.karthikbhandary2_investment_fund
We all know what bitcoin is. Right now it is in the boom. This dataset provides information about bitcoin, along with other assets such as gold. Take a peak into the dataset to understand it more.
CREATE TABLE bitcoin_usd (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE
);CREATE TABLE monthly_data (
"date" TIMESTAMP,
"gold_usd" DOUBLE,
"cpi_us" DOUBLE
);CREATE TABLE sp500 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.