[Quickfix-developers] Non-standard repeating group in TradingSessionStatus message
Brought to you by:
orenmnero
|
From: Francis G. <fr...@at...> - 2006-05-11 18:12:26
|
Hello all,
I've been trying to parse a 4.4 TradingSessionStatus message with repeating
groups which are instrument blocks.
8=FIX.4.49=246435=h49=target56=Demo134=46252=20060511-17:59:13335=23
36=clearing625=U100D1339=2325=N340=258=Market is closed. Any trading
functionality is not
available.146=2255=USD/CHF15=USD561=19003=10.459004=-10.959006=0.019
000=49001=49002=0.00019005=455=NZD/JPY15=NZD561=19003=12.259004=-13.
259006=0.019000=199001=29002=0.019005=1955=CAD/JPY15=CAD561=19003=9
.659004=-10.159006=0.019000=189001=29002=0.019005=1855=EUR/CAD15=EUR
I work with the latest QF sources and .NET 2.
int groups = message.getInt(new NoRelatedSym().getField());
for (uint i = 1; i < groups; i++)
{
Group group = new Group();
message.getGroup(i, group);
//This doesn't work because Group needs a parameter (what should it be?).
How do I get the group?
}
Thanks,
Francis
|