Escape Characters in RTO WebSocket Fields

When processing page data we see some fields contain escape characters - which we have discovered means Partial Update - so update from character 14.

                      \u001b[14`             19-Nov-24  

I was unable to find any documentation on these escape characters and would like to know if these are the only case or if we should handle others ?

Sort by:
1 - 1 of 11

    @Nathan.Harris

    Partial update formats are the same for both Real-Time SDKs and WebSocket API so you can refer to that article.

    For example:

    The syntax of an intra-field positioning sequence is as follow:

    <CSI>n<HPA>
    
    • <CSI> is 1B5B. In Websocket, it is \u001b[. 5B is the '[' character.
    • n is 14
    • <HPA> is 0x60. In Websocket, it is the '`' character.

    Therefore \u001b[14` represent an intra-field positioning sequence.