[Quickfix-developers] new OrdType
Brought to you by:
orenmnero
|
From: <as...@ly...> - 2007-02-09 14:54:05
|
Hi all,
I'm trying to send Iceberg orders (order type 'Z' which was not a =
defined OrdType in QuickFix42 and I have therefore added it myself).
=20
public class OrdType : CharField
{
public const int FIELD =3D 40;
public const char FOREX_LIMIT =3D 'F';
public const char FOREX_MARKET =3D 'C';
public const char FOREX_PREVIOUSLY_QUOTED =3D 'H';
public const char FOREX_SWAP =3D 'G';
public const char FUNARI =3D 'I';
public const char ICEBERG =3D 'Z';
=20
But I still get an error message saying:
"Rejected: Value is incorrect (out of range) for this tag:40)" when =
sending a NewOrder(Single).
=20
Anyone who has had the same problem and knows what more I have to do to =
add new order types into QuickFix?
=20
Grateful for any help!
=20
/=C5sa
|