Thread: [Quickfix-developers] TradeCaptureReport - Parties
Brought to you by:
orenmnero
|
From: SPG <ste...@bl...> - 2006-07-04 10:53:58
|
Hi, I need to add 2xParties component blocks (one for Taker and one for Maker), but cannot seem to find any QuickFix implementation classes that will let me do this to a TradeCaptureReport message. Can someone point me to the right directionplease? Regards, Steve -- View this message in context: http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5165513 Sent from the QuickFIX - Dev forum at Nabble.com. |
|
From: Lin L. <le...@gm...> - 2006-07-04 11:03:25
|
Hi,
The definition of Parties component is:
<component name="Parties">
<group name="NoPartyIDs" required="N">
<field name="PartyID" required="N" />
<field name="PartyIDSource" required="N" />
<field name="PartyRole" required="N" />
<group name="NoPartySubIDs" required="N">
<field name="PartySubID" required="N" />
<field name="PartySubIDType" required="N" />
</group>
</group>
</component>
So,you can add more then one "Party" object into parties.It's a group
component.
Does it help you?
Lejiang
On 7/4/06, SPG <ste...@bl...> wrote:
>
> QuickFIX Documentation:
> http://www.quickfixengine.org/quickfix/doc/html/index.html
> QuickFIX Support: http://www.quickfixengine.org/services.html
>
>
> Hi, I need to add 2xParties component blocks (one for Taker and one for
> Maker), but cannot seem to find any QuickFix implementation classes that
> will let me do this to a TradeCaptureReport message.
>
> Can someone point me to the right directionplease?
>
> Regards,
>
> Steve
> --
> View this message in context:
> http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5165513
> Sent from the QuickFIX - Dev forum at Nabble.com.
>
>
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Quickfix-developers mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfix-developers
>
--
Lin Lejiang
|
|
From: SPG <ste...@bl...> - 2006-07-04 11:15:59
|
Hi Lin, Thanks for the reply. I understand the structure of a Party from the FIX spec, but I cannot find a way of implementing a PArty in the QuickFix API (Using the java implementation). I see that TradeCaptutreReport.NoSides has a "NoPartyIDs" integer field, so I guess I set that to 2, but how to I add the relevan PartyID, PartyRole fields etc..? Regards, Steve -- View this message in context: http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5165727 Sent from the QuickFIX - Dev forum at Nabble.com. |
|
From: Lin L. <le...@gm...> - 2006-07-04 11:34:57
|
Hi,
For your referrence:
ExecutionReport.NoPartyIDs partyIDs = new ExecutionReport.NoPartyIDs
();
partyIDs.set(new PartyID("MyID"));
partyIDs.set(new PartyRole(PartyRole.CLEARING_FIRM));
ExecutionReport exec = ......;
exec.addGroup(partyIDs);
On 7/4/06, SPG <ste...@bl...> wrote:
>
> QuickFIX Documentation:
> http://www.quickfixengine.org/quickfix/doc/html/index.html
> QuickFIX Support: http://www.quickfixengine.org/services.html
>
>
> Hi Lin,
>
> Thanks for the reply.
> I understand the structure of a Party from the FIX spec, but I cannot find
> a
> way of implementing a PArty in the QuickFix API (Using the java
> implementation).
>
> I see that TradeCaptutreReport.NoSides has a "NoPartyIDs" integer field,
> so
> I guess I set that to 2, but how to I add the relevan PartyID, PartyRole
> fields etc..?
>
> Regards,
>
> Steve
>
> --
> View this message in context:
> http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5165727
> Sent from the QuickFIX - Dev forum at Nabble.com.
>
>
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Quickfix-developers mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfix-developers
>
--
Lin Lejiang
|
|
From: SPG <ste...@bl...> - 2006-07-04 11:45:14
|
Thanks again Lin, I was looking at the quickfix.NoPartyIDs which is an int field, not the Group type in TradeCaptureReport.NoSides.NoPartyIDs!! The documentation is very sparse on quickfix/j, not very helpful for beginners, thank god for you guys here on the forums! Steve -- View this message in context: http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5166103 Sent from the QuickFIX - Dev forum at Nabble.com. |
|
From: Lin L. <le...@gm...> - 2006-07-04 12:06:10
|
Hi, You should use the class TradeCaptureReport.NoSides.NoPartyIDs in message TradeCaptureReport. On 7/4/06, SPG <ste...@bl...> wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Thanks again Lin, > > I was looking at the quickfix.NoPartyIDs which is an int field, not the > Group type in TradeCaptureReport.NoSides.NoPartyIDs!! > > The documentation is very sparse on quickfix/j, not very helpful for > beginners, thank god for you guys here on the forums! > > Steve > -- > View this message in context: > http://www.nabble.com/TradeCaptureReport---Parties-tf1889281.html#a5166103 > Sent from the QuickFIX - Dev forum at Nabble.com. > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > -- Lin Lejiang |