Top 10 Cryptocurrency Price Data
Historical Price Data for Bitcoin, Ethereum, Binance Coin, and More
@kaggle.huthayfahodeb_top_10_cryptocurrency_price_data
Historical Price Data for Bitcoin, Ethereum, Binance Coin, and More
@kaggle.huthayfahodeb_top_10_cryptocurrency_price_data
This Dataset contains historical price data for 10 cryptocurrencies spanning from 2021 to 2024, in three different time frames: 1 day, 4 hours, and 1 hour. The data is sourced from the Binance API and stored in CSV (Comma Separated Values) format for easy accessibility and analysis.
You can use this data for various purposes such as backtesting trading strategies, conducting statistical analysis, or building predictive models related to cryptocurrency markets.
CREATE TABLE top10_2021_2024_1d (
"timestamp" TIMESTAMP,
"btcusdt" DOUBLE,
"ethusdt" DOUBLE,
"bnbusdt" DOUBLE,
"solusdt" DOUBLE,
"usdcusdt" DOUBLE,
"xrpusdt" DOUBLE,
"dogeusdt" DOUBLE,
"adausdt" DOUBLE,
"shibusdt" DOUBLE
);CREATE TABLE top10_2021_2024_1h (
"timestamp" TIMESTAMP,
"btcusdt" DOUBLE,
"ethusdt" DOUBLE,
"bnbusdt" DOUBLE,
"solusdt" DOUBLE,
"usdcusdt" DOUBLE,
"xrpusdt" DOUBLE,
"dogeusdt" DOUBLE,
"adausdt" DOUBLE,
"shibusdt" DOUBLE
);CREATE TABLE top10_2021_2024_4h (
"timestamp" TIMESTAMP,
"btcusdt" DOUBLE,
"ethusdt" DOUBLE,
"bnbusdt" DOUBLE,
"solusdt" DOUBLE,
"usdcusdt" DOUBLE,
"xrpusdt" DOUBLE,
"dogeusdt" DOUBLE,
"adausdt" DOUBLE,
"shibusdt" DOUBLE
);Anyone who has the link will be able to view this.