Bitcoin Historical Price (1H,2017.8-2020.3)
Bitcoin price from Binance (1 hour Freq)
@kaggle.quartier13_bitcoin_historical_price_1h2017820202
Bitcoin price from Binance (1 hour Freq)
@kaggle.quartier13_bitcoin_historical_price_1h2017820202
The OHLCV data is coming from Binance and BITMEX, with Hourly frequency. And sorted by ascending.
If anyone need, i will upload 1min/15min/daily Bitcoin and ETH price data. (also i have Future and Options data)
I am also trying to use ML approach on Crypto. But that seems not working at the moment.
CREATE TABLE btc_1h (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"vol" DOUBLE
);CREATE TABLE xbtusd_1h (
"timestamp" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.