[This message was posted by Dean Kauffman of TradeWeb LLC 
<[email protected]> to the "International" discussion forum at 
http://fixprotocol.org/discuss/14. You can reply to it on-line at 
http://fixprotocol.org/discuss/read/e62d050f - PLEASE DO NOT REPLY BY MAIL.]

Refer to the documentation that came with your QuickFIX libraries: 
doc\html\index.html. In general you would write something like this in C##:

using QuickFix;

void sendIOI(const SessionID& sessionID_)
{
        QuickFix44.IndicationOfInterest message();
        message.getHeader().set(new TargetSubID("XXX"));
        message.set(new IOIid("#2"));
        message.set(new IOITransType(IOITransType_NEW));
        message.set(new Symbol("IBM"));
        message.set(new Side(Side_BUY));
        message.set(new IOIQty("80000"));
        message.set(new Price(117));
        message.set(new Currency("USD"));
        message.set(new IOINaturalFlag(true));
        message.set(new Text("Very Far"));
        Session.sendToTarget(message, sessionID_);
}


> Hi,
> 
>    Can any one tell me, how do I create an IOI message and send it using
>    QuickFix Engine using C#.
> 
>    I have created an Executor program which is act as a Server and the
>    other one as an Initiator by looking at some examples. My problem is
>    that I want to send a IOI Message from the Executor, so that my
>    Initiator Program can receive it. But I do not know How to construct
>    a IOI Message and also do not know How to send it.
> 
> The Message is :-
> 57=XXX,23=#2,28=N,55=IBM,54=1,27=80000,44=117,15=USD,130=Y,58=Very Far
> 
> Thank you, Arun


[You can unsubscribe from this discussion group by sending a message to 
mailto:[email protected]]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Financial Information eXchange" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/fix-protocol?hl=en
-~----------~----~----~----~------~----~------~--~---

  • [FIX] Re: How to Construct an I... 'International' forum at fixprotocol . org

Reply via email to