quickfix icon indicating copy to clipboard operation
quickfix copied to clipboard

The Go FIX Protocol Library :rocket:

Results 130 quickfix issues
Sort by recently updated
recently updated
newest added

Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.15.0 to 0.17.0. Commits 9d2ee97 ssh: implement strict KEX protocol changes 4e5a261 ssh: close net.Conn on all NewServerConn errors 152cdb1 x509roots/fallback: update bundle fdfe1f8 ssh: defer channel...

dependencies

Is your feature request related to a problem? Please describe. Per https://www.fixtrading.org/groups/continuousmkts/ Sequence number resets are a bore. Describe the solution you'd like The implementation proposed is to use an...

This is a re-write of https://github.com/quickfixgo/quickfix/pull/576 after addressing feedbacks and rebasing. Related issue: https://github.com/quickfixgo/quickfix/issues/555

The message is just like below: ```8=FIX.4.2 9=000540 35=UP 34=000004 43=N 52=20230627-13:51:13.116 49=xx 56=xxxx 6529=req_id 8054=2 6068=AGI 6288=0 8001=PositionList 8002=AGI/USD 6068=PDD 6288=0 8001=PositionList 8002=PDD/USD 10=xxx ``` Tag 6068 appeared twice...

Today, `MessageStore` persist message to send one by one through _[this](https://github.com/quickfixgo/quickfix/blob/v0.7.0/store.go#L23)_ method: ``` SaveMessageAndIncrNextSenderMsgSeqNum(seqNum int, msg []byte) error ``` This means each outgoing message maps to one database operation. This...

SQL store writes every single increment of sender message sequence number and target message sequence number to the DB. For high volume of incoming messages, such as market data messages,...

The other party requires the tags to have a specified order, but the body part I sent is sorted in ascending order, how can I generate a custom sort through...

Hi, Before going deeper into a fix, I'd like your opinion on this: if a refresh is occurring while messages are still attempted to be sent, it can happen that...

Having sqlstore and mongostore in this repo adds unnecessary dependencies so it's worth considering moving them to separate repos that can be imported as required.