quickfix
quickfix copied to clipboard
The Go FIX Protocol Library :rocket:
Hello, We have recently encountered a performance issue with quickFIXGo. We see that when we have considerable outgoing orders our rate of processing of incoming messages decreases significantly. From our...
First of all please excuse me for a lack of information - this is all i have honestly. I have stopping function wrapper: ```go func stopInitiator() { stopChan := make(chan...
## My problem Today I found out that, while the creation_time is saved following the specified timezone set in the configuration, it's not saving the timezone in the database, what...
Many FIX acceptors (like Standard Chartered for example) rely on [International Atomic Time](https://en.wikipedia.org/wiki/International_Atomic_Time) (TAI) instead of UTC for example. This cause constant time syncing problems between initiator and acceptor. There...
Ref #661. Dynamic sessions are unregistered when a session disconnects, and messages cannot be sent to those sessions afterward. This PR introduces a new feature, similar to the acceptor template...
In the current implementation, DynamicSession is unregistered when the connection is disconnected. Since DynamicSession is unregistered, ErrUnknownSession will appear when the dynamic session is disconnected and the SendToTarget method is...
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.24.0 to 0.27.0. Commits e2310ae go.mod: update golang.org/x dependencies 77708f7 quic: skip tests which depend on unimplemented UDP functions on Plan 9 9617c63 http2: avoid Transport hang...
in java quickfix , the `JdbcLogHeartBeats` make it , can add the feature? in custom SqlLogStroe, need parse the bytes parameter. it is inefficiency.
The current IsInRange() method produces incorrect results when the time range crosses midnight (StartTime > EndTime) and "Weekdays" is configured. For example, when Weekdays=[Sunday, Monday, Tuesday, Wednesday, Thursday], the system...
From my pov, when the application (Initiator/Acceptor) stops it should also call `store.Close` and then when app starts again, it should create a new store using the `storeFactory.Create`. Why `store.Close`...