Re: [Quickfix-developers] Market Data Request from Multiple PartyIDs
Brought to you by:
orenmnero
From: Oren M. <or...@qu...> - 2008-02-20 16:01:48
|
You need multiple groups, you are setting the same field on the same group, so only the last one will be set. You should do something like this: FIX::Group noBanks. noBanks.setField(453, '5'); noBanks.setField(448. "BANK1"); mktDataRequest.addGroup(noBanks); noBanks.setField(448. "BANK2"); mktDataRequest.addGroup(noBanks); ... On Feb 20, 2008, at 1:32 AM, open hash wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Could someone please just point me to as what I am doing wrong? Any > help will be greatly appreciated. > > Thanks! > > open hash <ope...@ya...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Hi, > > I haven't been able to resolve this repeating group issue related > to getting Market Data from multiple banks(PartyIDs). There is no > group like "FIX44::MarketDataRequest::NoRelatedSym" that I can add > to the request. Also tried adding a generic group like this that > also generated errors: > > FIX::Group noBanks; > noBanks.setField(453,"5"); > noBanks.setField(448, "BANK1"); > noBanks.setField(448, "BANK2"); > noBanks.setField(448, "BANK3"); > noBanks.setField(448, "BANK4"); > noBanks.setField(448, "BANK5"); > mktDataRequest.addGroup(noBanks); > > Please help me as what I need to do, in order to add 5 PartyIDs to > my market data request? > > Thanks. > Be a better friend, newshound, and know-it-all with Yahoo! Mobile. > Try it > now.------------------------------------------------------------------ > ------- > 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-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > > > Never miss a thing. Make Yahoo your homepage. > ---------------------------------------------------------------------- > --- > 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-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |