Bitcoin Order Book At Binance Exchence
Have you ever seen a bitcoin order book look like?
@kaggle.maxreis_df_order_book
Have you ever seen a bitcoin order book look like?
@kaggle.maxreis_df_order_book
Do you know what is a order book in a Exchange?
It is where we can see all open sell and buy order waiting for a buyer or a seller which accept to buy or sell by the oferced or asked price.
In this data set you can see how the order book change by every second.
This example was taken from Binance Exchenge and show all the open order for the pair Bitcoin/Dólar (BTC/USDT) for a period of time.
Enjoy and do not hesitate to do any question.
CREATE TABLE df_order_book_20200817 (
"eventtime" TIMESTAMP,
"bidprice" DOUBLE,
"bidqty" DOUBLE,
"askprice" DOUBLE,
"askqty" DOUBLE,
"depth" BIGINT
);Anyone who has the link will be able to view this.