Questions tagged [quickfixj]

QuickFIX/J is the Java port of QuickFIX, an open-source engine for writing applications that communicate via FIX (Financial Information eXchange) protocol.

Documentation and source are at QuickFIXJ.org.

325 questions
0
votes
1 answer

QuickfixJ create message from xml string

QuickFixJ Message class has method toXML() which converts message into xml string. Is there any way I can create message object from the XML string? I need the reverse of toXML() i.e. I want to create Message from xml.
Orchid
  • 223
  • 3
  • 11
0
votes
1 answer

if quickfixj crash in onmessage, will I lose my current message?

Need to understand if my initiator received a message but crashed inside onMessage function, will I still restart with reset the sequence number that I was processing while crashing, and receives it again? so I don't lose the message? At what point…
baron
  • 149
  • 3
  • 11
0
votes
3 answers

How to have QuickFIX connection which last for more than a week

Is there any way through coding or configuration to create FIX session which lasts for more than a week. I checked the Configuring QuickFIX, but i cannot find any information there.
Bhalchandra K
  • 2,631
  • 3
  • 31
  • 43
0
votes
2 answers

How to set sequence numbers manually in QuickFixJ?

I'm acting as an acceptor. Is there a way to set sequence numbers manually? The first idea I had, was to modify .seqnums files, but it does not work. Google mentions existence of setNextSenderMsgSeqNum and setNextTargetMsgSeqNum methods, however I…
user52028778
  • 27,164
  • 3
  • 36
  • 42
0
votes
1 answer

Rebuilding QuickFixJ with modified FIXT11.xml

I have added NoLegs group to my FIXT11.xml , I want to rebuild my quickFixJ. Referring to this, I have downloaded quickfixJ from here. now i have replaced older FIXT11.xml with new one at…
Chetna rustagi
  • 463
  • 7
  • 21
0
votes
0 answers

QuickFixJ overrides Sending Time (Tag 52) value in LOGON message. How to avoid this?

Configure QuickFixJ to not override Sending Time (Tag 52) value in LOGON message. I am setting the Sending Time in Tag 52 in the header of the message. DateTime test = DateTime.now(DateTimeZone.UTC); …
0
votes
1 answer

quickFix subgroup parsing failed

Hi I am not able to get NoPartyIds(443) group inside my NoSides group while capturing TradeCaptureReport Iterator groupIterator= message.groupKeyIterator(); while (groupIterator.hasNext()) { int num = groupIterator.next(); …
Chetna rustagi
  • 463
  • 7
  • 21
0
votes
0 answers

QuickFixJ custom fields in repeating group

Using QuickFixJ 2.0.1, I'd appreciate some help please, I have been stuck on this for a while now. I am not so familiar with Maven so please bear with me. I have a DataDictionary containing some custom tags in a NoQuoteEntries group (in a…
Tobin
  • 1,698
  • 15
  • 24
0
votes
1 answer

Define custom field formulas in QuickFIX/J

Does QuickFIX/J provide any way to specify field->values mappings in config files that should be used on specific sessions? For example on SESSION_UAT I want to send on every NewOrder customTag1="Test", and on SESSION_PROD I want customTag1="Real"?…
0
votes
1 answer

How can I restore handlers after restart and continue receive messages from CurreneX?

I create java service for CurreneX. I use Quiqfix/j library. When i send new QuoteRequest, I get Quotes during 240 sec. But if I restart my service or reset internet connection I will stop recive Quotes. How can I continue recevive Quotes After…
user5620472
  • 2,722
  • 8
  • 44
  • 97
0
votes
1 answer

initiate rfq failed: noTradersAvailable_tse

When I send quickfix.fix44.QuoteRequest() to CurreneX I get error: 58=initiate rfq failed: noTradersAvailable_tse I can not faund what it means
user5620472
  • 2,722
  • 8
  • 44
  • 97
0
votes
1 answer

quickfix create order and send to currenex

I create: quickfix.fix44.NewOrderSingle order = new quickfix.fix44.NewOrderSingle(); fill it: order.set(new ClOrdID(String.valueOf(orderDomain.getOrderId()))); order.set(new Product(Product.CURRENCY)); order.set(new TransactTime(new…
user5620472
  • 2,722
  • 8
  • 44
  • 97
0
votes
1 answer

Quickfixj 1.5.x/1.6.x custom message with repeating group - compilation issue

i am trying to add a custom message and compile quickfixj and am running into an issue where last few fields that i've added are not being picked up (they all have field number > 93000 if it matters) code generation is ok but compilation fails, i am…
0
votes
1 answer

FIX QuoteRequest parsed by Fiximulator

I'm sending a message to FIXimulator and it recieves it: But it seems Fiximulatro when parsing a RequestMeassage ommits group content (55=AMZN^38=100) : As for some reason, server misses group content, that has been within the incoming mesage, it…
uzla
  • 515
  • 1
  • 4
  • 20
0
votes
1 answer

Issue validating self signed certificate: handshake_failure received

I am using quickfix to validate server's certificate and get fatal handshake_failure. This is how it looks to me: Initial handshake is initiated The client connects. The server accepts. A TLS handshake occurs during which: o Cipher suites are…
fiddle
  • 1,095
  • 5
  • 18
  • 33