[Time Series] Crypto Currency Dataset
Time series data for top 425 cryptocurrencies of the world.
@kaggle.tr1gg3rtrash_time_series_top_100_crypto_currency_dataset
Time series data for top 425 cryptocurrencies of the world.
@kaggle.tr1gg3rtrash_time_series_top_100_crypto_currency_dataset
A cryptocurrency, crypto-currency, or crypto is a digital currency designed to work as a medium of exchange through a computer network that is not reliant on any central authority, such as a government or bank, to uphold or maintain it. It is a decentralized system for verifying that the parties to a transaction have the money they claim to have, eliminating the need for traditional intermediaries, such as banks, when funds are being transferred between two entities.
Cryptocurrency does not exist in physical form (like paper money) and is typically not issued by a central authority. Cryptocurrencies typically use decentralized control as opposed to a central bank digital currency (CBDC). When a cryptocurrency is minted or created prior to issuance or issued by a single issuer, it is generally considered centralized. When implemented with decentralized control, each cryptocurrency works through distributed ledger technology, typically a blockchain, that serves as a public financial transaction database. Traditional asset classes like currencies, commodities, and stocks, as well as macroeconomic factors, have modest exposures to cryptocurrency returns.
The first decentralized cryptocurrency was Bitcoin, which was first released as open-source software in 2009. As of March 2022, there were more than 9,000 other cryptocurrencies in the marketplace, of which more than 70 had a market capitalization exceeding $1 billion.
The following dataset consists of the top 425 cryptocurrencies. For younger currencies, the timeframe is considered from the origin of the currency. The dataset consists of 8 features.
| Feature Name | Data Type | Description |
|---|---|---|
| timestamp | Date String | |
| adjclose | Float | Adjusted Close Price of the currency for the day |
| close | Float | Close Price of the currency for the day |
| low | Float | Lowest Price of the currency for the day |
| open | Float | Opening Price of the currency for the day |
| high | Float | Highest Price of the currency for the day |
| volume | Float | Volume of the currency |
The name of the file has been set according to its crypto symbol.
I would like to thank https://finance.yahoo.com/ for providing such a great platform.
Cover photo by Kanchanara from Unsplash
CREATE TABLE wxt_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"volume" DOUBLE,
"open" DOUBLE,
"low" DOUBLE
);CREATE TABLE xcad_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"close" DOUBLE,
"high" DOUBLE,
"open" DOUBLE
);CREATE TABLE xch_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"close" DOUBLE,
"high" DOUBLE,
"open" DOUBLE
);CREATE TABLE xdc_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE xem_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE xmon_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"close" DOUBLE
);CREATE TABLE xnc_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE xno_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"close" DOUBLE,
"high" DOUBLE,
"open" DOUBLE
);CREATE TABLE xprt_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"volume" BIGINT,
"high" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"low" DOUBLE
);CREATE TABLE xpr_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" DOUBLE,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE xrp_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"volume" BIGINT
);CREATE TABLE xsgd_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE xvg_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"close" DOUBLE,
"low" DOUBLE,
"high" DOUBLE,
"open" DOUBLE,
"volume" BIGINT
);CREATE TABLE xvs_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE xwc_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"open" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE xym_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE xyo_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"open" DOUBLE,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE yfii_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE yfi_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"volume" BIGINT,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE ygg_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE yooshi_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"volume" BIGINT,
"low" DOUBLE,
"close" DOUBLE
);CREATE TABLE youc_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"high" DOUBLE,
"close" DOUBLE
);CREATE TABLE zen_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"volume" BIGINT
);CREATE TABLE zeon_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"low" DOUBLE,
"volume" BIGINT,
"close" DOUBLE,
"high" DOUBLE,
"open" DOUBLE
);CREATE TABLE zrx_usd (
"timestamp" TIMESTAMP,
"adjclose" DOUBLE,
"open" DOUBLE,
"low" DOUBLE,
"volume" DOUBLE,
"high" DOUBLE,
"close" DOUBLE
);Anyone who has the link will be able to view this.