BITCOIN Historical Datasets 2018-2025
BTCUSDT spot crypto Binance (Daily, 4h, 1h, 15m) update to current day
@kaggle.novandraanugrah_bitcoin_historical_datasets_2018_2024
BTCUSDT spot crypto Binance (Daily, 4h, 1h, 15m) update to current day
@kaggle.novandraanugrah_bitcoin_historical_datasets_2018_2024
This dataset contains historical price data for Bitcoin (BTC/USDT) from January 1, 2018, to December 10, 2024. The data was sourced using both the Binance API and Yahoo Finance, providing granular candlestick data in three timeframes:
This dataset includes the following fields for each timeframe:
Binance API: Used for retrieving the 1-hour and 4-hour candlestick data from 2018 to 2024
This dataset is provided under the CC0 Public Domain Dedication. It is free to use for any purpose, with no restrictions on usage or redistribution.
CREATE TABLE btc_15m_data (
"open_time" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"close_time" TIMESTAMP,
"quote_asset_volume" DOUBLE,
"number_of_trades" BIGINT,
"taker_buy_base_asset_volume" DOUBLE,
"taker_buy_quote_asset_volume" DOUBLE,
"ignore" BIGINT
);CREATE TABLE btc_1d_data (
"open_time" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"close_time" TIMESTAMP,
"quote_asset_volume" DOUBLE,
"number_of_trades" BIGINT,
"taker_buy_base_asset_volume" DOUBLE,
"taker_buy_quote_asset_volume" DOUBLE,
"ignore" BIGINT
);CREATE TABLE btc_1h_data (
"open_time" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"close_time" TIMESTAMP,
"quote_asset_volume" DOUBLE,
"number_of_trades" BIGINT,
"taker_buy_base_asset_volume" DOUBLE,
"taker_buy_quote_asset_volume" DOUBLE,
"ignore" BIGINT
);CREATE TABLE btc_4h_data (
"open_time" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"close_time" TIMESTAMP,
"quote_asset_volume" DOUBLE,
"number_of_trades" BIGINT,
"taker_buy_base_asset_volume" DOUBLE,
"taker_buy_quote_asset_volume" DOUBLE,
"ignore" BIGINT
);Anyone who has the link will be able to view this.