Quickfix Syncing Sequence Numbers

后端 未结 2 372
独厮守ぢ
独厮守ぢ 2020-12-20 00:37

If, for whatever reason, my application loses track of what sequence number I was on, what is the recommended way of re-establishing the session to continue trading?

相关标签:
2条回答
  • 2020-12-20 00:46

    If the acceptor receives a message out of sequence, it would send a reject message and the reason for it in the text field. In the text field it would mention the sequence number expected, so parse that part of the message, take the sequence number and start again.

    0 讨论(0)
  • 2020-12-20 00:48

    From FIX 4.1 onwards, the Logon message (A) contains a tag ResetSeqNumFlag (141). Setting it to 'Y' "indicates that both sides of the FIX session should reset sequence numbers."

    0 讨论(0)
提交回复
热议问题