I am trying to connect to my counterparty's FIX
For fix connection I am using quickfix with python. Here is my settings.config for quickfix (SenderCompId, TargetCompId, port and host received from counterparty):
[DEFAULT]
ConnectionType=initiator
FileStorePath=C:\Users\me\Desktop\fix\store
FileLogPath=C:\Users\me\Desktop\fix\log
SenderCompID=sendid
[SESSION]
BeginString=FIX.4.4
ResetOnLogon=Y
StartTime=21:05:00
EndTime=21:03:00
TargetCompID=targid
HeartBtInt=30
SocketConnectPort=port
SocketConectHost=ip
DataDictionary=C:\Users\me\Desktop\fix\FIX44.xml
Here is the code of my simple application. I am trying at first to send a Logon message to my counterparty (password also received from counterparty):
class App(fix.Application):
def onCreate(self, sessionID):
print('on create')
return
def onLogon(self, sessionID):
self.sessionID = sessionID
print("Success Logon to session '%s'.", sessionID.toString())
return
def onLogout(self, sessionID):
print('on logout')
return
def toAdmin(self, message, sessionID):
print('to admin')
if message.getHeader().getField(35) == 'A':
message.setField(554, 'password')
print(message.toString())
return
def toApp(self, message, sessionID):
print("Receive message \n", message.toString())
return
def fromAdmin(self, message, sessionID):
print('from admin')
return
def fromApp(self, message, sessionID):
print('from app')
return
settings = fix.SessionSettings('settings.config')
storeFactory = fix.SocketInitiator(application, storeFactory, settings, logFactory)
initiator.start()
print('initiator start')
The output of my app is as follows (problems with fix message separator while copy):
on create
initiator start
In my log path after initiator.start()
creates four .txt
files. Their names are:
FIX.4.4-sendid-targid.event.current.log
FIX.4.4-sendid-targid.messages.current.log
GLOBAL.event.current.log
GLOBAL.messages.current.log
In FIX.4.4-sendid-targid.event.current.log
creates a message:
date-time: Created session
, all other are empty.
As you see, I am trying to send Logon message to my counterparty. However, I do not receive any output about successful Logon. Counterparty also does not see any connection from my side.
What could be the problem? I seem to do everything according to the rules. Please help.