Binance Transaction Dataset
Binance Dataset containing various columns explaining daily transactions
@kaggle.sujaykapadnis_binance_transaction_dataset
Binance Dataset containing various columns explaining daily transactions
@kaggle.sujaykapadnis_binance_transaction_dataset
This is the dataset fetched from the API, it has a total of 21 columns explaining the different features of various cryptocurrencies.
Binance is a crypto trading platform, so this data will be good practice to test your skills.
Let's go!
CREATE TABLE binance (
"unnamed_0" BIGINT -- Unnamed: 0,
"symbol" VARCHAR,
"pricechange" DOUBLE,
"pricechangepercent" DOUBLE,
"weightedavgprice" DOUBLE,
"prevcloseprice" DOUBLE,
"lastprice" DOUBLE,
"lastqty" DOUBLE,
"bidprice" DOUBLE,
"bidqty" DOUBLE,
"askprice" DOUBLE,
"askqty" DOUBLE,
"openprice" DOUBLE,
"highprice" DOUBLE,
"lowprice" DOUBLE,
"volume" DOUBLE,
"quotevolume" DOUBLE,
"opentime" BIGINT,
"closetime" BIGINT,
"firstid" BIGINT,
"lastid" BIGINT,
"count" BIGINT
);
Anyone who has the link will be able to view this.