0

As mentioned here:

https://library.tradingtechnologies.com/tt-fix/recovery/Msg_RecoveryRequest_U2.html

Not able to find a Recovery Request message (U2) type that this library supports, however, in FIX44.xml there is this message type:

<message name="OutOfBandRecoveryRequest" msgcat="app" msgtype="U2">
    <field name="StartDate" required="Y" />
    <field name="EndDate" required="Y" />
    <field name="SecurityExchange" required="N" />
    <field name="ExDestination" required="N" />
</message>

How can I build a recovery request to send using quickfixn?

Nexus23
  • 6,195
  • 9
  • 50
  • 67
  • Where is the FIX44.xml file that you are finding that? I don't see it in the QF/n source repo's FIX44.xml file. – Grant Birchmeier Aug 15 '22 at 22:47
  • @GrantBirchmeier U2 request type can be found in `FIX44.xml` file here: https://library.tradingtechnologies.com/tt-fix/recovery/tt-fix-schema.html – Nexus23 Aug 17 '22 at 10:25

1 Answers1

0

Probably what you need is the last example of this page: http://quickfixn.org/tutorial/sending-messages.html

You will see the sample fills field by field (including the message type).

You can send and receive messages working with the "generic" types.

Creating messages from scratch

Valdek Santana
  • 337
  • 1
  • 8