Re: [Quickfix-users] disconnect at 00:00 GMT
Brought to you by:
orenmnero
From: Oren M. <or...@qu...> - 2008-01-16 15:10:23
|
Can you post your config file too? On Jan 15, 2008, at 7:34 PM, Malinka Rellikwodahs wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > i've made a C# implementation of QF that connects multiple clients > to a vendor for market data, and forwards the market data to the > clients, at about 19:00 EST 00:00 GMT i loose tick data, no log of > a disconnect the last logged message from vendor is just the last > tick i received, i set my stop time to 17:00 and stop time to 17:15 > EST/EDT depending on DST due to vendor, and everything seems to > behave itself, until approximately 00:00 GMT > > is there any known cause of something like this, and if so what do > i need to do to fix it > > below is my session setting code values are pulled in from a DB and > i've replaced most of them with their actual values > > Dictionary dict = new Dictionary(); > > dict.setLong("ReconnectInterval", 60); > dict.setBool("UseDataDictionary", true); > dict.setString("DataDictionary", "FIX42.xml"); > dict.setLong("HeartBtInt", 30); > dict.setString("ConnectionType", "initiator"); > > m_set.set(dict); > > m_dict.setString("BeginString", "FIX.4.2"); > m_dict.setString("TargetCompID", target); > m_dict.setString("SenderCompID", sender); > > m_dict.setLong("SocketConnectPort", Server.Port); > m_dict.setString("SocketConnectHost", Server.Host); > > m_dict.setString("StartTime", DateTime.Parse > ("17:15:00").ToUniversalTime().ToString("HH:mm:ss")); > m_dict.setString("EndTime", DateTime.Parse > ("17:00:00").ToUniversalTime().ToString("HH:mm:ss")); > > if (m_ses == null) > m_ses = new SessionID("FIX.4.2", target, sender); > m_set.set(m_ses, m_dict); > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Quickfix-users mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-users |