update library imports
This commit is contained in:
@ -1,106 +1,106 @@
|
||||
## 0.9.10 (August 8, 2025)
|
||||
|
||||
### BUG FIXES
|
||||
* Send Reset if the ResetTime elapsed in between checks [#725](https://github.com/quickfixgo/quickfix/pull/725)
|
||||
* Send Reset if the ResetTime elapsed in between checks [#725](https://quantex.com/qfixpt/quickfix/pull/725)
|
||||
|
||||
## 0.9.9 (July 31, 2025)
|
||||
|
||||
### BUG FIXES
|
||||
* Adds missing tz for resetseqtime without starttime endtime #723 [#723](https://github.com/quickfixgo/quickfix/pull/723)
|
||||
* Adds missing tz for resetseqtime without starttime endtime #723 [#723](https://quantex.com/qfixpt/quickfix/pull/723)
|
||||
|
||||
## 0.9.8 (July 21, 2025)
|
||||
|
||||
### ENHANCEMENTS
|
||||
* Add DB name configuration [#711](https://github.com/quickfixgo/quickfix/pull/711)
|
||||
* Change ResetSeqTime to time.Time based on the config's timeZone [#712](https://github.com/quickfixgo/quickfix/pull/712)
|
||||
* Add DB name configuration [#711](https://quantex.com/qfixpt/quickfix/pull/711)
|
||||
* Change ResetSeqTime to time.Time based on the config's timeZone [#712](https://quantex.com/qfixpt/quickfix/pull/712)
|
||||
|
||||
### BUG FIXES
|
||||
* Block Sends when Resend Request is active [#715](https://github.com/quickfixgo/quickfix/pull/715)
|
||||
* Fix the issue of incorrect time range calculation across days [#718](https://github.com/quickfixgo/quickfix/pull/718)
|
||||
* Block Sends when Resend Request is active [#715](https://quantex.com/qfixpt/quickfix/pull/715)
|
||||
* Fix the issue of incorrect time range calculation across days [#718](https://quantex.com/qfixpt/quickfix/pull/718)
|
||||
|
||||
## 0.9.7 (April 23, 2025)
|
||||
|
||||
### FEATURES
|
||||
* Adds SQL, MongoDB and Composite FIX Log and LogFactory implementations, see `config/configuration.go` for details [#672](https://github.com/quickfixgo/quickfix/pull/672)
|
||||
* Adds convenience getters for session log and store [#675](https://github.com/quickfixgo/quickfix/pull/675)
|
||||
* Adds config option for ResetSeqTime [#705](https://github.com/quickfixgo/quickfix/pull/705)
|
||||
* Adds SQL, MongoDB and Composite FIX Log and LogFactory implementations, see `config/configuration.go` for details [#672](https://quantex.com/qfixpt/quickfix/pull/672)
|
||||
* Adds convenience getters for session log and store [#675](https://quantex.com/qfixpt/quickfix/pull/675)
|
||||
* Adds config option for ResetSeqTime [#705](https://quantex.com/qfixpt/quickfix/pull/705)
|
||||
|
||||
### ENHANCEMENTS
|
||||
* File store uses files exclusively [#680](https://github.com/quickfixgo/quickfix/pull/680)
|
||||
* Protect concurrent usage of filestore [#688](https://github.com/quickfixgo/quickfix/pull/688)
|
||||
* Support udecimal library in code generation [#700](https://github.com/quickfixgo/quickfix/pull/700)
|
||||
* File store uses files exclusively [#680](https://quantex.com/qfixpt/quickfix/pull/680)
|
||||
* Protect concurrent usage of filestore [#688](https://quantex.com/qfixpt/quickfix/pull/688)
|
||||
* Support udecimal library in code generation [#700](https://quantex.com/qfixpt/quickfix/pull/700)
|
||||
|
||||
### BUG FIXES
|
||||
* Avoid unkeyed fields usage for exported struct in generated code [#683](https://github.com/quickfixgo/quickfix/pull/683)
|
||||
* Iterate messages in filestore opens a separate file to avoid deadlock [#703](https://github.com/quickfixgo/quickfix/pull/703)
|
||||
* Correct ordering in message trailer [#707](https://github.com/quickfixgo/quickfix/pull/707)
|
||||
* Avoid unkeyed fields usage for exported struct in generated code [#683](https://quantex.com/qfixpt/quickfix/pull/683)
|
||||
* Iterate messages in filestore opens a separate file to avoid deadlock [#703](https://quantex.com/qfixpt/quickfix/pull/703)
|
||||
* Correct ordering in message trailer [#707](https://quantex.com/qfixpt/quickfix/pull/707)
|
||||
|
||||
## 0.9.6 (September 20, 2024)
|
||||
|
||||
### ENHANCEMENTS
|
||||
* Allow the clients of acceptor to specify their own tls.Config https://github.com/quickfixgo/quickfix/pull/667
|
||||
* Adds NextExpectedSeqNum setting https://github.com/quickfixgo/quickfix/pull/668
|
||||
* Allow the clients of acceptor to specify their own tls.Config https://quantex.com/qfixpt/quickfix/pull/667
|
||||
* Adds NextExpectedSeqNum setting https://quantex.com/qfixpt/quickfix/pull/668
|
||||
|
||||
### BUG FIXES
|
||||
* Reinit stop sync to prevent deadlock on sequential start/stops https://github.com/quickfixgo/quickfix/pull/669
|
||||
* Check logon auth before resetting store https://github.com/quickfixgo/quickfix/pull/670
|
||||
* Reverts ToAdmin call sequencing https://github.com/quickfixgo/quickfix/pull/674
|
||||
* Reinit stop sync to prevent deadlock on sequential start/stops https://quantex.com/qfixpt/quickfix/pull/669
|
||||
* Check logon auth before resetting store https://quantex.com/qfixpt/quickfix/pull/670
|
||||
* Reverts ToAdmin call sequencing https://quantex.com/qfixpt/quickfix/pull/674
|
||||
|
||||
## 0.9.5 (August 14, 2024)
|
||||
|
||||
### ENHANCEMENTS
|
||||
* Introduce message iterator to avoid loading all messages into memory at once upon resend request https://github.com/quickfixgo/quickfix/pull/659
|
||||
* Only lock fieldmap once during message parsing https://github.com/quickfixgo/quickfix/pull/658
|
||||
* Optimize tag value parsing https://github.com/quickfixgo/quickfix/pull/657
|
||||
* Use bytes.Count to count the number of message fields https://github.com/quickfixgo/quickfix/pull/655
|
||||
* Port config documentation into proper go doc format https://github.com/quickfixgo/quickfix/pull/649
|
||||
* Support TLS configuration as raw bytes https://github.com/quickfixgo/quickfix/pull/647
|
||||
* Introduce message iterator to avoid loading all messages into memory at once upon resend request https://quantex.com/qfixpt/quickfix/pull/659
|
||||
* Only lock fieldmap once during message parsing https://quantex.com/qfixpt/quickfix/pull/658
|
||||
* Optimize tag value parsing https://quantex.com/qfixpt/quickfix/pull/657
|
||||
* Use bytes.Count to count the number of message fields https://quantex.com/qfixpt/quickfix/pull/655
|
||||
* Port config documentation into proper go doc format https://quantex.com/qfixpt/quickfix/pull/649
|
||||
* Support TLS configuration as raw bytes https://quantex.com/qfixpt/quickfix/pull/647
|
||||
|
||||
### BUG FIXES
|
||||
* Use the Go generated file convention https://github.com/quickfixgo/quickfix/pull/660
|
||||
* Fix stuck call to Dial when calling Stop on the Initiator https://github.com/quickfixgo/quickfix/pull/654
|
||||
* Do not increment NextTargetMsgSeqNum for out of sequence Logout and Test Requests https://github.com/quickfixgo/quickfix/pull/645
|
||||
* Use the Go generated file convention https://quantex.com/qfixpt/quickfix/pull/660
|
||||
* Fix stuck call to Dial when calling Stop on the Initiator https://quantex.com/qfixpt/quickfix/pull/654
|
||||
* Do not increment NextTargetMsgSeqNum for out of sequence Logout and Test Requests https://quantex.com/qfixpt/quickfix/pull/645
|
||||
|
||||
## 0.9.4 (May 29, 2024)
|
||||
|
||||
### ENHANCEMENTS
|
||||
* Adds log to readLoop just like writeLoop https://github.com/quickfixgo/quickfix/pull/642
|
||||
* Adds log to readLoop just like writeLoop https://quantex.com/qfixpt/quickfix/pull/642
|
||||
|
||||
### BUG FIXES
|
||||
* Maintain repeating group field order when parsing messages https://github.com/quickfixgo/quickfix/pull/636
|
||||
* Maintain repeating group field order when parsing messages https://quantex.com/qfixpt/quickfix/pull/636
|
||||
|
||||
## 0.9.3 (May 9, 2024)
|
||||
|
||||
### BUG FIXES
|
||||
* Change filestore.offsets from map[int]msgDef to sync.Map https://github.com/quickfixgo/quickfix/pull/639
|
||||
* Unregister sessions on stop https://github.com/quickfixgo/quickfix/pull/637
|
||||
* Corrects ResetOnLogon behavior for initiators https://github.com/quickfixgo/quickfix/pull/635
|
||||
* Change filestore.offsets from map[int]msgDef to sync.Map https://quantex.com/qfixpt/quickfix/pull/639
|
||||
* Unregister sessions on stop https://quantex.com/qfixpt/quickfix/pull/637
|
||||
* Corrects ResetOnLogon behavior for initiators https://quantex.com/qfixpt/quickfix/pull/635
|
||||
|
||||
### FEATURES
|
||||
* Add AllowUnknownMessageFields & CheckUserDefinedFields settings as included in QuickFIX/J https://github.com/quickfixgo/quickfix/pull/632
|
||||
* Add AllowUnknownMessageFields & CheckUserDefinedFields settings as included in QuickFIX/J https://quantex.com/qfixpt/quickfix/pull/632
|
||||
|
||||
## 0.9.2 (April 23, 2024)
|
||||
|
||||
### BUG FIXES
|
||||
* Prevent message queue blocking in the case of network connection trouble https://github.com/quickfixgo/quickfix/pull/615 https://github.com/quickfixgo/quickfix/pull/628
|
||||
* Corrects validation of multiple repeating groups with different fields https://github.com/quickfixgo/quickfix/pull/623
|
||||
* Prevent message queue blocking in the case of network connection trouble https://quantex.com/qfixpt/quickfix/pull/615 https://quantex.com/qfixpt/quickfix/pull/628
|
||||
* Corrects validation of multiple repeating groups with different fields https://quantex.com/qfixpt/quickfix/pull/623
|
||||
|
||||
## 0.9.1 (April 15, 2024)
|
||||
|
||||
### BUG FIXES
|
||||
* Preserve original body when resending https://github.com/quickfixgo/quickfix/pull/624
|
||||
* Preserve original body when resending https://quantex.com/qfixpt/quickfix/pull/624
|
||||
|
||||
## 0.9.0 (November 13, 2023)
|
||||
|
||||
### FEATURES
|
||||
* Add Weekdays config setting as included in QuickFIX/J https://github.com/quickfixgo/quickfix/pull/590
|
||||
* Add Weekdays config setting as included in QuickFIX/J https://quantex.com/qfixpt/quickfix/pull/590
|
||||
* `MessageStore` Refactor
|
||||
|
||||
The message store types external to a quickfix-go application have been refactored into individual sub-packages within `quickfix`. The benefit of this is that the dependencies for these specific store types are no longer included in the quickfix package itself, so many projects depending on the quickfix package will no longer be bloated with large indirect dependencies if they are not specifically implemented in your application. This applies to the `mongo` (MongoDB), `file` (A file on-disk), and `sql` (Any db accessed with a go sql driver interface). The `memorystore` (in-memory message store) syntax remains unchanged. The minor drawback to this is that with some re-packaging came some minor syntax changes. See https://github.com/quickfixgo/quickfix/issues/547 and https://github.com/quickfixgo/quickfix/pull/592 for more information. The relevant examples are below.
|
||||
The message store types external to a quickfix-go application have been refactored into individual sub-packages within `quickfix`. The benefit of this is that the dependencies for these specific store types are no longer included in the quickfix package itself, so many projects depending on the quickfix package will no longer be bloated with large indirect dependencies if they are not specifically implemented in your application. This applies to the `mongo` (MongoDB), `file` (A file on-disk), and `sql` (Any db accessed with a go sql driver interface). The `memorystore` (in-memory message store) syntax remains unchanged. The minor drawback to this is that with some re-packaging came some minor syntax changes. See https://quantex.com/qfixpt/quickfix/issues/547 and https://quantex.com/qfixpt/quickfix/pull/592 for more information. The relevant examples are below.
|
||||
|
||||
MONGO
|
||||
```go
|
||||
import "github.com/quickfixgo/quickfix"
|
||||
import "quantex.com/qfixpt/quickfix"
|
||||
|
||||
...
|
||||
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewMongoStoreFactory(appSettings), appSettings, fileLogFactory)
|
||||
@ -108,8 +108,8 @@ acceptor, err = quickfix.NewAcceptor(app, quickfix.NewMongoStoreFactory(appSetti
|
||||
becomes
|
||||
```go
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/store/mongo"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/store/mongo"
|
||||
)
|
||||
|
||||
...
|
||||
@ -118,7 +118,7 @@ acceptor, err = quickfix.NewAcceptor(app, mongo.NewStoreFactory(appSettings), ap
|
||||
|
||||
FILE
|
||||
```go
|
||||
import "github.com/quickfixgo/quickfix"
|
||||
import "quantex.com/qfixpt/quickfix"
|
||||
|
||||
...
|
||||
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewFileStoreFactory(appSettings), appSettings, fileLogFactory)
|
||||
@ -126,8 +126,8 @@ acceptor, err = quickfix.NewAcceptor(app, quickfix.NewFileStoreFactory(appSettin
|
||||
becomes
|
||||
```go
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/store/file"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/store/file"
|
||||
)
|
||||
|
||||
...
|
||||
@ -137,7 +137,7 @@ acceptor, err = quickfix.NewAcceptor(app, file.NewStoreFactory(appSettings), app
|
||||
SQL
|
||||
|
||||
```go
|
||||
import "github.com/quickfixgo/quickfix"
|
||||
import "quantex.com/qfixpt/quickfix"
|
||||
|
||||
...
|
||||
acceptor, err = quickfix.NewAcceptor(app, quickfix.NewSQLStoreFactory(appSettings), appSettings, fileLogFactory)
|
||||
@ -145,8 +145,8 @@ acceptor, err = quickfix.NewAcceptor(app, quickfix.NewSQLStoreFactory(appSetting
|
||||
becomes
|
||||
```go
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/store/sql"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/store/sql"
|
||||
)
|
||||
|
||||
...
|
||||
@ -155,13 +155,13 @@ acceptor, err = quickfix.NewAcceptor(app, sql.NewStoreFactory(appSettings), appS
|
||||
|
||||
|
||||
### ENHANCEMENTS
|
||||
* Acceptance suite store type expansions https://github.com/quickfixgo/quickfix/pull/596 and https://github.com/quickfixgo/quickfix/pull/591
|
||||
* Support Go v1.21 https://github.com/quickfixgo/quickfix/pull/589
|
||||
* Acceptance suite store type expansions https://quantex.com/qfixpt/quickfix/pull/596 and https://quantex.com/qfixpt/quickfix/pull/591
|
||||
* Support Go v1.21 https://quantex.com/qfixpt/quickfix/pull/589
|
||||
|
||||
|
||||
### BUG FIXES
|
||||
* Resolves outstanding issues with postgres db creation syntax and `pgx` driver https://github.com/quickfixgo/quickfix/pull/598
|
||||
* Fix sequence number bug when storage fails https://github.com/quickfixgo/quickfix/pull/432
|
||||
* Resolves outstanding issues with postgres db creation syntax and `pgx` driver https://quantex.com/qfixpt/quickfix/pull/598
|
||||
* Fix sequence number bug when storage fails https://quantex.com/qfixpt/quickfix/pull/432
|
||||
|
||||
|
||||
## 0.8.1 (October 27, 2023)
|
||||
|
||||
@ -5,10 +5,10 @@ clean:
|
||||
rm -rf gen
|
||||
|
||||
generate: clean
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/*.xml
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=quantex.com/qfixpt/quickfix/gen ../spec/*.xml
|
||||
|
||||
generate-udecimal: clean
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -use-udecimal=true -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/*.xml
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -use-udecimal=true -pkg-root=quantex.com/qfixpt/quickfix/gen ../spec/*.xml
|
||||
|
||||
fmt:
|
||||
gofmt -l -w -s $(shell find . -type f -name '*.go')
|
||||
@ -84,9 +84,9 @@ test-ci:
|
||||
go test -v -cover `go list ./... | grep -v quickfix/gen`
|
||||
|
||||
generate-ci: clean
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml;
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=quantex.com/qfixpt/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml;
|
||||
|
||||
generate-ci-udecimal: clean
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -use-udecimal=true -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml;
|
||||
mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -use-udecimal=true -pkg-root=quantex.com/qfixpt/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml;
|
||||
|
||||
# ---------------------------------------------------------------
|
||||
|
||||
@ -1,18 +1,18 @@
|
||||
# QuickFIX/Go
|
||||
|
||||
[](https://github.com/quickfixgo/quickfix/actions) [](https://godoc.org/github.com/quickfixgo/quickfix) [](https://goreportcard.com/report/github.com/quickfixgo/quickfix)
|
||||
[](https://quantex.com/qfixpt/quickfix/actions) [](https://godoc.org/quantex.com/qfixpt/quickfix) [](https://goreportcard.com/report/quantex.com/qfixpt/quickfix)
|
||||
|
||||
Open Source [FIX Protocol](http://www.fixprotocol.org/) library implemented in Go
|
||||
|
||||
### Looking for help with `MessageStore` syntax changes?
|
||||
See v0.9.0 release notes [here](https://github.com/quickfixgo/quickfix/releases/tag/v0.9.0)
|
||||
See v0.9.0 release notes [here](https://quantex.com/qfixpt/quickfix/releases/tag/v0.9.0)
|
||||
|
||||
|
||||
## About
|
||||
<p>QuickFIX/Go is a <a href="https://www.fixtrading.org/">FIX Protocol Community</a> implementation for the <a href="https://golang.org">Go programming language</a>.</p>
|
||||
|
||||
<ul>
|
||||
<li>100% free and open source with a liberal <a href="https://github.com/quickfixgo/quickfix/blob/master/LICENSE.txt">license</a></li>
|
||||
<li>100% free and open source with a liberal <a href="https://quantex.com/qfixpt/quickfix/blob/master/LICENSE.txt">license</a></li>
|
||||
<li>Supports FIX versions 4.0 - 5.0SP2</li>
|
||||
<li>Runs on any hardware and operating system supported by Go (1.21+ required)</li>
|
||||
<li>Spec driven run-time message validation</li>
|
||||
@ -35,7 +35,7 @@ See v0.9.0 release notes [here](https://github.com/quickfixgo/quickfix/releases/
|
||||
With [Go module](https://github.com/golang/go/wiki/Modules) support, simply add the following import
|
||||
|
||||
```
|
||||
import "github.com/quickfixgo/quickfix"
|
||||
import "quantex.com/qfixpt/quickfix"
|
||||
```
|
||||
|
||||
to your code, and then `go [build|run|test]` will automatically fetch the necessary dependencies.
|
||||
@ -43,13 +43,13 @@ to your code, and then `go [build|run|test]` will automatically fetch the necess
|
||||
Otherwise, run the following Go command to install the `quickfix` package:
|
||||
|
||||
```sh
|
||||
go get -u github.com/quickfixgo/quickfix
|
||||
go get -u quantex.com/qfixpt/quickfix
|
||||
```
|
||||
|
||||
## Getting Started
|
||||
|
||||
* [QuickFIX User Manual](https://quickfixengine.org/go/documentation/)
|
||||
* [Go API Documentation](https://godoc.org/github.com/quickfixgo/quickfix)
|
||||
* [Go API Documentation](https://godoc.org/quantex.com/qfixpt/quickfix)
|
||||
* See [examples](https://github.com/quickfixgo/examples) for some simple examples of using QuickFIX/Go.
|
||||
|
||||
## FIX Messaging Model
|
||||
@ -77,7 +77,7 @@ Following installation, `generate-fix` is installed to `$GOPATH/bin/generate-fix
|
||||
## General Support
|
||||
<h3>Github Discussions</h3>
|
||||
|
||||
<p>Our <a href="https://github.com/quickfixgo/quickfix/discussions/categories/q-a">Github Discussions Board</a> is free, public, and easily searchable. It’s the preferred method of user support from the QuickFIX/Go team.
|
||||
<p>Our <a href="https://quantex.com/qfixpt/quickfix/discussions/categories/q-a">Github Discussions Board</a> is free, public, and easily searchable. It’s the preferred method of user support from the QuickFIX/Go team.
|
||||
|
||||
<p>Please provide as much detail as you can when asking a question, and include relevant configurations and code snippets.</p>
|
||||
|
||||
@ -91,7 +91,7 @@ Following installation, `generate-fix` is installed to `$GOPATH/bin/generate-fix
|
||||
|
||||
<p><strong>Note:</strong> Please do not submit questions or help requests to the issues list. It is for bugs and issues. If you need help, please use the Discussions board as described above and you’ll be able to send your question to the entire community.</p>
|
||||
|
||||
<p><a href="https://github.com/quickfixgo/quickfix/issues">GitHub Issues</a></p>
|
||||
<p><a href="https://quantex.com/qfixpt/quickfix/issues">GitHub Issues</a></p>
|
||||
|
||||
<p>Please provide sample code, logs, and a description of the problem when the issue is submitted.</p>
|
||||
|
||||
@ -153,4 +153,4 @@ make accept
|
||||
|
||||
## Licensing
|
||||
|
||||
This software is available under the QuickFIX Software License. Please see the [LICENSE.txt](https://github.com/quickfixgo/quickfix/blob/main/LICENSE.txt) for the terms specified by the QuickFIX Software License.
|
||||
This software is available under the QuickFIX Software License. Please see the [LICENSE.txt](https://quantex.com/qfixpt/quickfix/blob/main/LICENSE.txt) for the terms specified by the QuickFIX Software License.
|
||||
|
||||
@ -13,13 +13,13 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
field "github.com/quickfixgo/quickfix/gen/field"
|
||||
tag "github.com/quickfixgo/quickfix/gen/tag"
|
||||
filelog "github.com/quickfixgo/quickfix/log/file"
|
||||
"github.com/quickfixgo/quickfix/store/file"
|
||||
"github.com/quickfixgo/quickfix/store/mongo"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
field "quantex.com/qfixpt/quickfix/gen/field"
|
||||
tag "quantex.com/qfixpt/quickfix/gen/tag"
|
||||
filelog "quantex.com/qfixpt/quickfix/log/file"
|
||||
"quantex.com/qfixpt/quickfix/store/file"
|
||||
"quantex.com/qfixpt/quickfix/store/mongo"
|
||||
)
|
||||
|
||||
var router *quickfix.MessageRouter = quickfix.NewMessageRouter()
|
||||
|
||||
@ -27,7 +27,7 @@ import (
|
||||
|
||||
proxyproto "github.com/pires/go-proxyproto"
|
||||
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
// Acceptor accepts connections from FIX clients and manages the associated sessions.
|
||||
|
||||
@ -20,7 +20,7 @@ import (
|
||||
"net"
|
||||
"testing"
|
||||
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
|
||||
proxyproto "github.com/pires/go-proxyproto"
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
@ -12,8 +12,8 @@ import (
|
||||
"sync"
|
||||
"text/template"
|
||||
|
||||
"github.com/quickfixgo/quickfix/cmd/generate-fix/internal"
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/cmd/generate-fix/internal"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"sort"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
type fieldTypeMap map[string]*datadictionary.FieldType
|
||||
|
||||
@ -3,7 +3,7 @@ package internal
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func isDecimalType(quickfixType string) bool {
|
||||
|
||||
@ -197,7 +197,7 @@ import (
|
||||
"{{ . }}"
|
||||
{{- end }}{{ "\n" }}
|
||||
{{- end }}
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
{{- if checkIfEnumImportRequired .MessageDef}}
|
||||
"{{ importRootPath }}/enum"
|
||||
{{- end }}
|
||||
@ -239,7 +239,7 @@ import (
|
||||
"{{ . }}"
|
||||
{{- end }}{{ "\n" }}
|
||||
{{- end }}
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
{{- if checkIfEnumImportRequired .MessageDef}}
|
||||
"{{ importRootPath }}/enum"
|
||||
{{- end }}
|
||||
@ -274,7 +274,7 @@ import (
|
||||
"{{ . }}"
|
||||
{{- end }}{{ "\n" }}
|
||||
{{- end }}
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
{{- if checkIfEnumImportRequired .MessageDef}}
|
||||
"{{ importRootPath }}/enum"
|
||||
{{- end }}
|
||||
@ -342,7 +342,7 @@ func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
|
||||
TagTemplate = template.Must(template.New("Tag").Parse(`
|
||||
// Code generated by quickfix. DO NOT EDIT.
|
||||
package tag
|
||||
import "github.com/quickfixgo/quickfix"
|
||||
import "quantex.com/qfixpt/quickfix"
|
||||
|
||||
const (
|
||||
{{- range .}}
|
||||
@ -359,7 +359,7 @@ import (
|
||||
|
||||
{{ if checkIfDecimalImportRequiredForFields . }}"{{ decimalImport }}"{{ end }}
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"{{ importRootPath }}/enum"
|
||||
"{{ importRootPath }}/tag"
|
||||
)
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func TestNewComponentType(t *testing.T) {
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func TestNewFieldDef(t *testing.T) {
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func TestNewFieldType(t *testing.T) {
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func TestNewGroupField(t *testing.T) {
|
||||
|
||||
@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/quickfixgo/quickfix/datadictionary"
|
||||
"quantex.com/qfixpt/quickfix/datadictionary"
|
||||
)
|
||||
|
||||
func TestNewMessageDef(t *testing.T) {
|
||||
|
||||
@ -22,7 +22,7 @@ import (
|
||||
|
||||
"golang.org/x/net/proxy"
|
||||
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
func loadDialerConfig(settings *SessionSettings) (dialer proxy.ContextDialer, err error) {
|
||||
|
||||
@ -22,7 +22,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/suite"
|
||||
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
type DialerTestSuite struct {
|
||||
|
||||
@ -20,7 +20,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
)
|
||||
|
||||
func TestFIXUTCTimestampWrite(t *testing.T) {
|
||||
|
||||
@ -6,9 +6,9 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// AccountField is a STRING field.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Advertisement is the fix40 Advertisement type, MsgType = 7.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Allocation is the fix40 Allocation type, MsgType = J.
|
||||
|
||||
@ -4,11 +4,11 @@ package allocationack
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// AllocationACK is the fix40 AllocationACK type, MsgType = P.
|
||||
|
||||
@ -4,11 +4,11 @@ package dontknowtrade
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// DontKnowTrade is the fix40 DontKnowTrade type, MsgType = Q.
|
||||
|
||||
@ -4,11 +4,11 @@ package email
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Email is the fix40 Email type, MsgType = C.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ExecutionReport is the fix40 ExecutionReport type, MsgType = 8.
|
||||
|
||||
@ -4,10 +4,10 @@ package fix40
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Header is the fix40 Header type.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package heartbeat
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Heartbeat is the fix40 Heartbeat type, MsgType = 0.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// IndicationofInterest is the fix40 IndicationofInterest type, MsgType = 6.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package listcancelrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListCancelRequest is the fix40 ListCancelRequest type, MsgType = K.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package listexecute
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListExecute is the fix40 ListExecute type, MsgType = L.
|
||||
|
||||
@ -4,10 +4,10 @@ package liststatus
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatus is the fix40 ListStatus type, MsgType = N.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package liststatusrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatusRequest is the fix40 ListStatusRequest type, MsgType = M.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package logon
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logon is the fix40 Logon type, MsgType = A.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package logout
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logout is the fix40 Logout type, MsgType = 5.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// NewOrderList is the fix40 NewOrderList type, MsgType = E.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// NewOrderSingle is the fix40 NewOrderSingle type, MsgType = D.
|
||||
|
||||
@ -4,11 +4,11 @@ package news
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// News is the fix40 News type, MsgType = B.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package ordercancelreject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelReject is the fix40 OrderCancelReject type, MsgType = 9.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelReplaceRequest is the fix40 OrderCancelReplaceRequest type, MsgType = G.
|
||||
|
||||
@ -4,11 +4,11 @@ package ordercancelrequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelRequest is the fix40 OrderCancelRequest type, MsgType = F.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package orderstatusrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderStatusRequest is the fix40 OrderStatusRequest type, MsgType = H.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Quote is the fix40 Quote type, MsgType = S.
|
||||
|
||||
@ -4,11 +4,11 @@ package quoterequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// QuoteRequest is the fix40 QuoteRequest type, MsgType = R.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package reject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Reject is the fix40 Reject type, MsgType = 3.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package resendrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ResendRequest is the fix40 ResendRequest type, MsgType = 2.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package sequencereset
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// SequenceReset is the fix40 SequenceReset type, MsgType = 4.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package testrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix40"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix40"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// TestRequest is the fix40 TestRequest type, MsgType = 1.
|
||||
|
||||
@ -2,9 +2,9 @@
|
||||
package fix40
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Trailer is the fix40 Trailer type.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Advertisement is the fix41 Advertisement type, MsgType = 7.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Allocation is the fix41 Allocation type, MsgType = J.
|
||||
|
||||
@ -4,11 +4,11 @@ package allocationack
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// AllocationACK is the fix41 AllocationACK type, MsgType = P.
|
||||
|
||||
@ -4,11 +4,11 @@ package dontknowtrade
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// DontKnowTrade is the fix41 DontKnowTrade type, MsgType = Q.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Email is the fix41 Email type, MsgType = C.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ExecutionReport is the fix41 ExecutionReport type, MsgType = 8.
|
||||
|
||||
@ -4,10 +4,10 @@ package fix41
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Header is the fix41 Header type.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package heartbeat
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Heartbeat is the fix41 Heartbeat type, MsgType = 0.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// IndicationofInterest is the fix41 IndicationofInterest type, MsgType = 6.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package listcancelrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListCancelRequest is the fix41 ListCancelRequest type, MsgType = K.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package listexecute
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListExecute is the fix41 ListExecute type, MsgType = L.
|
||||
|
||||
@ -4,10 +4,10 @@ package liststatus
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatus is the fix41 ListStatus type, MsgType = N.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package liststatusrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatusRequest is the fix41 ListStatusRequest type, MsgType = M.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package logon
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logon is the fix41 Logon type, MsgType = A.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package logout
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logout is the fix41 Logout type, MsgType = 5.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// NewOrderList is the fix41 NewOrderList type, MsgType = E.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// NewOrderSingle is the fix41 NewOrderSingle type, MsgType = D.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// News is the fix41 News type, MsgType = B.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package ordercancelreject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelReject is the fix41 OrderCancelReject type, MsgType = 9.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelReplaceRequest is the fix41 OrderCancelReplaceRequest type, MsgType = G.
|
||||
|
||||
@ -4,11 +4,11 @@ package ordercancelrequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderCancelRequest is the fix41 OrderCancelRequest type, MsgType = F.
|
||||
|
||||
@ -4,11 +4,11 @@ package orderstatusrequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// OrderStatusRequest is the fix41 OrderStatusRequest type, MsgType = H.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Quote is the fix41 Quote type, MsgType = S.
|
||||
|
||||
@ -4,11 +4,11 @@ package quoterequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// QuoteRequest is the fix41 QuoteRequest type, MsgType = R.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package reject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Reject is the fix41 Reject type, MsgType = 3.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package resendrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ResendRequest is the fix41 ResendRequest type, MsgType = 2.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package sequencereset
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// SequenceReset is the fix41 SequenceReset type, MsgType = 4.
|
||||
|
||||
@ -4,11 +4,11 @@ package settlementinstructions
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// SettlementInstructions is the fix41 SettlementInstructions type, MsgType = T.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package testrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix41"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix41"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// TestRequest is the fix41 TestRequest type, MsgType = 1.
|
||||
|
||||
@ -2,9 +2,9 @@
|
||||
package fix41
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Trailer is the fix41 Trailer type.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Advertisement is the fix42 Advertisement type, MsgType = 7.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Allocation is the fix42 Allocation type, MsgType = J.
|
||||
|
||||
@ -4,11 +4,11 @@ package allocationack
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// AllocationACK is the fix42 AllocationACK type, MsgType = P.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// BidRequest is the fix42 BidRequest type, MsgType = k.
|
||||
|
||||
@ -4,11 +4,11 @@ package bidresponse
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// BidResponse is the fix42 BidResponse type, MsgType = l.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package businessmessagereject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// BusinessMessageReject is the fix42 BusinessMessageReject type, MsgType = j.
|
||||
|
||||
@ -4,11 +4,11 @@ package dontknowtrade
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// DontKnowTrade is the fix42 DontKnowTrade type, MsgType = Q.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Email is the fix42 Email type, MsgType = C.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ExecutionReport is the fix42 ExecutionReport type, MsgType = 8.
|
||||
|
||||
@ -4,10 +4,10 @@ package fix42
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Header is the fix42 Header type.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package heartbeat
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Heartbeat is the fix42 Heartbeat type, MsgType = 0.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// IndicationofInterest is the fix42 IndicationofInterest type, MsgType = 6.
|
||||
|
||||
@ -4,10 +4,10 @@ package listcancelrequest
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListCancelRequest is the fix42 ListCancelRequest type, MsgType = K.
|
||||
|
||||
@ -4,10 +4,10 @@ package listexecute
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListExecute is the fix42 ListExecute type, MsgType = L.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatus is the fix42 ListStatus type, MsgType = N.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package liststatusrequest
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatusRequest is the fix42 ListStatusRequest type, MsgType = M.
|
||||
|
||||
@ -4,11 +4,11 @@ package liststrikeprice
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStrikePrice is the fix42 ListStrikePrice type, MsgType = m.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package logon
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logon is the fix42 Logon type, MsgType = A.
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
package logout
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// Logout is the fix42 Logout type, MsgType = 5.
|
||||
|
||||
@ -6,11 +6,11 @@ import (
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// MarketDataIncrementalRefresh is the fix42 MarketDataIncrementalRefresh type, MsgType = X.
|
||||
|
||||
@ -4,11 +4,11 @@ package marketdatarequest
|
||||
import (
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// MarketDataRequest is the fix42 MarketDataRequest type, MsgType = V.
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
package marketdatarequestreject
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/gen/enum"
|
||||
"github.com/quickfixgo/quickfix/gen/field"
|
||||
"github.com/quickfixgo/quickfix/gen/fix42"
|
||||
"github.com/quickfixgo/quickfix/gen/tag"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/gen/enum"
|
||||
"quantex.com/qfixpt/quickfix/gen/field"
|
||||
"quantex.com/qfixpt/quickfix/gen/fix42"
|
||||
"quantex.com/qfixpt/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// MarketDataRequestReject is the fix42 MarketDataRequestReject type, MsgType = Y.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user