Crypto Price Data During Terra Luna UST Crash
Analyze 15-minute crypto price data for stablecoins and large-cap blockchains
@kaggle.avanawallet_crypto_price_data_during_terra_luna_crash
Analyze 15-minute crypto price data for stablecoins and large-cap blockchains
@kaggle.avanawallet_crypto_price_data_during_terra_luna_crash
The collapse of Terra Luna and Terra USD (UST) shocked the broader cryptocurrency and financial markets. The aggregate market capitalization of large-cap cryptocurrencies dropped several hundreds of billions dollars in a matter of a week. Avana Wallet has aggregated 15-minute interval price data for stablecoins (US dollar pegs) and large-cap cryptocurrencies for you to analyze. The data span between 5/6/2022 and 5/17/2022, which captures the entire episode.
Several pricing discrepancies occurred during the volatility. You can analyze the data to find the discrepancies that occurred when the market panicked.
Data associated with Terra:
Large-cap cryptocurrencies:
Stablecoins:
CREATE TABLE anchor_protocol (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE avalanche (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE binance_usd (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE bitcoin (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE bnb (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE cardano (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE dai (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE dogecoin (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE ethereum (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE polygon (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE solana (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE terra_luna (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE terrausd (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE tether (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE usd_coin (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);CREATE TABLE xrp (
"timestamp" BIGINT,
"date" TIMESTAMP,
"price" DOUBLE
);Anyone who has the link will be able to view this.