Baselight

Bitcoin Daily Data With Market Sentiment

I got 90% accuracy with this model. Please do try and tell me if I am wrong.

@kaggle.vrdh459_bitcoin_price_with_market_sentiment

Bitcoin Train
@kaggle.vrdh459_bitcoin_price_with_market_sentiment.bitcoin_train

  • 74.84 KB
  • 1969 rows
  • 7 columns
current_price

Current Price

open

Open

high_of_previous_day

High Of Previous Day

low_of_previous_day

Low Of Previous Day

volume_of_previous_day

Volume Of Previous Day

market_sentiment

Market Sentiment

current_change

Current Change

30679.429890.230497.829590.47922065-0.35
29890.529992.830769.528270.5143490655.97
29996.928307.72839326665.5100550595.44
28307.726845.927029.726295.146450491.92
26845.926339.726679.326290.62731047-0.66
26339.72651526767.326183.535860490.66
2651526341.326472.82527669240472.93
26341.325591.925732.82483868380471.84
25591.325129.526051.724847.46082041-3.08
25129.52592926428.925726.456240460.09

CREATE TABLE bitcoin_train (
  "current_price" DOUBLE,
  "open" DOUBLE,
  "high_of_previous_day" DOUBLE,
  "low_of_previous_day" DOUBLE,
  "volume_of_previous_day" BIGINT,
  "market_sentiment" BIGINT,
  "current_change" DOUBLE
);

Share link

Anyone who has the link will be able to view this.