on_order_update trigger in multiple websockets

Zankroff
I am building my system, and in the documentation, it is stated that three WebSocket connections can be made. I wanted to ask if I define the on_order_update method in all three of them, would I get the same update on all three of them? I know updates are received asynchronously, but will the same update be received on all three WebSockets? It might be a silly question, but thanks for helping out.
  • rakeshr
    if I define the on_order_update method in all three of them, would I get the same update on all three of them?
    Yes, all WebSocket are independent, and you will receive updates on all spawn websockets(max allowed 3 connections for each API user).
Sign In or Register to comment.