How can I aggregate the levels of the orderbook? Now it gets streamed every 0.05 tick but I need to stream this every 0.50 interval of price.
How can I unite the various levels on the orderbook?
This is the code:
from time import sleep
from pybit import usdt_perpetual
ws_linear = usdt_perpetual.WebSocket(
test=False,
ping_interval=30, # the default is 30
ping_timeout=10, # the default is 10
domain="bybit" # the default is "bybit"
)
def handle_message(msg):
print(msg)
ws_linear.orderbook_25_stream(
handle_message, "ETHUSDT"
)
while True:
sleep(1)
Thank you
Here you have usable orderbook if it helps. Note: this code is not the cleanest, but it gets the job done.