Issue with Interactive Socket Not Receiving Position Updates After Order Execution

I am experiencing an issue with the interactive socket. After placing an order, I receive order type updates through the socket, which works fine. However, after the order is successfully executed, I do not receive the expected position updates through the socket. This causes a delay in reflecting the updated position on my end.

Could you please look into this issue and provide guidance on how to ensure position updates are received promptly after order execution?

ChatGPT said:

Hi @Parth_38670742,

First, ensure that you are sending position as the update_types in the WebSocket connection URL request as a query parameter. You can refer to the documentation for further details:

For an easier implementation of WebSockets, you can use the streamer functionalities provided in various languages. You can enable the position update type with a simple flag passed in the constructor of the streamer function.

Hope this helps!