BID Status

Is there a message in FIX for BID Status. I have the following workflow:
BID Submited -> BID Open -> BID Closed -> BID Processing.

I am assuming your workflow is about quotes and not about orders. FIX intentionally does not have a quote state model as it has one for orders. Bids can be submitted with QuoteType(537) to define whether a quote is only indicative or can be traded immediately. The QuoteStatusReport(35=AI) is intended to convey information about a quote.

Hi @hanno.klein

Can you help me with one issue?

@edsawyer99 Is this about the same issue (BID status) or a different one? You can post your questions on this forum to get help for free from other users of FIX. If this is about consulting for your specific implementation then please contact me directly, e.g. through LinkedIn.

1 Like

http://forum.fixtrading.org/t/fix-session-disconnect/16028?u=edsawyer99

That’s the post.

What’s your linked in profile?

From what you describe, you need to contact your counterparty sending you those messages. You are receiving a Heartbeat(35=0), TestRequest(35=1) and Logout(35=5). Maybe you are not responding properly and your counterparty decides to disconnect again. Please have a look at the FIX Session Layer specification and related test cases to see how session initiation works.

BTW, you posted under “Website Feedback”. That forum is about the FIX website and not about FIX standards.

Which FIX engine are you using? Apart from what Hanno said (contact your counterparty) maybe there also is a help forum or the like for your FIX engine.

Cheers,
Chris.

1 Like

Sorry, it’s my first time posting here!

Thanks for the answer.

Hi @christophjohn
We use FIX 4.4

That is the FIX version you are using. The FIX engine does all the session-level magic like logging on, sending heartbeats and so on.
Which programming language are you using?

I am using JAVA

OK, chances are you are using QuickFIX/J. But I guess you should look into your code and check if there are packages from the quickfix package imported.
If it is QuickFIX/J please open either a discussion here https://github.com/quickfix-j/quickfixj/discussions/categories/q-a or write a mail to the QFJ mailing list. You can subscribe here: https://sourceforge.net/projects/quickfixj/lists/quickfixj-users

But apart from that I still think that asking your counterparty might be the best solution. :wink:

Cheers,
Chris.