Cryprocurrency Prices For The Year
Cryptocurrency data since January 2021
@kaggle.artemburenok_cryprocurrency_prices_for_the_year
Cryptocurrency data since January 2021
@kaggle.artemburenok_cryprocurrency_prices_for_the_year
Here I have collected data on the 30 most important cryptocurrencies for the year.
For the analysis of time sequences. You can do it with ARIMA, RNN using deep learning and other advanced techniques. In addition, on time data, you can try to override techniques from other areas of machine learning. Cryptocurrencies can be clustered or build portfolio strategies in the long term.
Thanks for yahoo finance for free acces to prices.
I hope my dataset will let you exlore more about data science. I look forward to notebooks and comments from you.
CREATE TABLE usdt_usd (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE ust_usd (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE xmr_usd (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE xrp_usd (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.