I can't find any instances of something that should be simple on the web.
How do I define a generic group in QuickFix? I am using the Python bindings and define an MDIncrementalRefresh group like this:
group = fix42.MarketDataIncrementalRefresh().NoMDEntries()
But I am trying to read a group that is not standard in FIX4.2, called NoChartData
. As such I cannot call it because it does not exist in my FIX engine (I am putting off rebuilding QF for now -- see How to redefine QuickFix classes for custom groups?)
I have some idea that QF has a constructor so I can just create a generic group object and add fields to it. Does anyone know how to define groups on the fly, without rebuilding QF classes?
Thanks