Add Quickfix library #1

Merged
RamiroPaz merged 9 commits from quickfix into develop 2026-03-12 15:32:10 +00:00
1241 changed files with 1408920 additions and 261 deletions
Showing only changes of commit 48373b6855 - Show all commits

View File

@ -13,6 +13,7 @@ import (
"quantex.com/qfixdpl/quickfix/gen/enum" "quantex.com/qfixdpl/quickfix/gen/enum"
"quantex.com/qfixdpl/quickfix/gen/field" "quantex.com/qfixdpl/quickfix/gen/field"
"quantex.com/qfixdpl/quickfix/gen/fix50sp2/quote" "quantex.com/qfixdpl/quickfix/gen/fix50sp2/quote"
"quantex.com/qfixdpl/quickfix/store/file"
"quantex.com/qfixdpl/src/app" "quantex.com/qfixdpl/src/app"
"quantex.com/qfixdpl/src/common/tracerr" "quantex.com/qfixdpl/src/common/tracerr"
"quantex.com/qfixdpl/src/domain" "quantex.com/qfixdpl/src/domain"
@ -61,7 +62,7 @@ func (m *Manager) Start() error {
return err return err
} }
storeFactory := quickfix.NewMemoryStoreFactory() storeFactory := file.NewStoreFactory(settings)
logFactory, err := quickfix.NewFileLogFactory(settings) logFactory, err := quickfix.NewFileLogFactory(settings)
if err != nil { if err != nil {
err = tracerr.Errorf("error creating file log factory: %s", err) err = tracerr.Errorf("error creating file log factory: %s", err)