[Quickfix-developers] ExDestination missing in FIX41::OrderCancelRequest
Brought to you by:
orenmnero
|
From: Clark S. <cla...@ya...> - 2004-07-13 21:33:41
|
It looks like the ExDestition is missing in FIX41::OrderCancelRequest
I have to use the setField method instead of set
FIX41::OrderCancelRequest message( arg1, arg2, arg4, arg5);
message.set(FIX::OrderQty( _quantity));
if (OutSymbolSfx.size() > 0) {
message.set( FIX::SymbolSfx( OutSymbolSfx));
}
if (OutExDest.size() > 0)
/* message.set( FIX::ExDestination( OutExDest)); */
message.setField( 100, OutExDest);
}
---------------------------------
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish. |