Let's Study Ethereum!!!
Let's study the hourly price movements of ETH/USD
@kaggle.girish17019_lets_study_ethereum
Let's study the hourly price movements of ETH/USD
@kaggle.girish17019_lets_study_ethereum
Ethereum is a decentralized global software platform powered by blockchain technology. It is most commonly known for its native cryptocurrency, ether (ETH). On September 15 2022, Ethereum switched from using energy-intensive technology to a more sustainable system in a major update called "the merge".
On account of this Merge, let's study the hourly price movements of ETH/USD.
The dataset has one csv file (ethusd.csv). Price history is available on a hourly basis from 17th August 2017, 4 a.m. This dataset has the historical price information of Ethereum against the US Dollar.
Open_time : date and time of observation
Open : Opening price of the hour
High : Highest price of the hour
Low : Lowest price of the hour
Close : Closing price of the hour
Volume : Volume of transactions of the hour
Some of the questions which could be inferred from this dataset are:
CREATE TABLE ethusd (
"open_time" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE
);Anyone who has the link will be able to view this.