Bitcoin Prediction Dataset
Bitcoin BTC USD timeseries forecasting
@kaggle.validmodel_bitcoin_prediction_dataset
Bitcoin BTC USD timeseries forecasting
@kaggle.validmodel_bitcoin_prediction_dataset
Date :  Date of trading
Currency: Contains Bitcoin name
Closing Price  : Contains closing exchange rate
24 open: Contains opening exchange rate on day basis
24 high: Contains information when price was high on day basis
24 low: Contains information when price was low on day basis
CREATE TABLE btc_usd (
  "currency" VARCHAR,
  "date" TIMESTAMP,
  "closing_price_usd" DOUBLE  -- Closing Price (USD),
  "n_24h_open_usd" DOUBLE  -- 24h Open (USD),
  "n_24h_high_usd" DOUBLE  -- 24h High (USD),
  "n_24h_low_usd" DOUBLE  -- 24h Low (USD)
);Anyone who has the link will be able to view this.