OrderCancelReplaceRequest.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. #ifndef FIX50SP2_ORDERCANCELREPLACEREQUEST_H
  2. #define FIX50SP2_ORDERCANCELREPLACEREQUEST_H
  3. #include "Message.h"
  4. namespace FIX50SP2
  5. {
  6. class OrderCancelReplaceRequest : public Message
  7. {
  8. public:
  9. OrderCancelReplaceRequest() : Message(MsgType()) {}
  10. OrderCancelReplaceRequest(const FIX::Message& m) : Message(m) {}
  11. OrderCancelReplaceRequest(const Message& m) : Message(m) {}
  12. OrderCancelReplaceRequest(const OrderCancelReplaceRequest& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("G"); }
  14. OrderCancelReplaceRequest(
  15. const FIX::ClOrdID& aClOrdID,
  16. const FIX::Side& aSide,
  17. const FIX::TransactTime& aTransactTime,
  18. const FIX::OrdType& aOrdType )
  19. : Message(MsgType())
  20. {
  21. set(aClOrdID);
  22. set(aSide);
  23. set(aTransactTime);
  24. set(aOrdType);
  25. }
  26. FIELD_SET(*this, FIX::OrderID);
  27. FIELD_SET(*this, FIX::NoPartyIDs);
  28. class NoPartyIDs: public FIX::Group
  29. {
  30. public:
  31. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  32. FIELD_SET(*this, FIX::PartyID);
  33. FIELD_SET(*this, FIX::PartyIDSource);
  34. FIELD_SET(*this, FIX::PartyRole);
  35. FIELD_SET(*this, FIX::NoPartySubIDs);
  36. class NoPartySubIDs: public FIX::Group
  37. {
  38. public:
  39. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  40. FIELD_SET(*this, FIX::PartySubID);
  41. FIELD_SET(*this, FIX::PartySubIDType);
  42. };
  43. };
  44. FIELD_SET(*this, FIX::TradeOriginationDate);
  45. FIELD_SET(*this, FIX::TradeDate);
  46. FIELD_SET(*this, FIX::OrigClOrdID);
  47. FIELD_SET(*this, FIX::ClOrdID);
  48. FIELD_SET(*this, FIX::SecondaryClOrdID);
  49. FIELD_SET(*this, FIX::ClOrdLinkID);
  50. FIELD_SET(*this, FIX::ListID);
  51. FIELD_SET(*this, FIX::OrigOrdModTime);
  52. FIELD_SET(*this, FIX::Account);
  53. FIELD_SET(*this, FIX::AcctIDSource);
  54. FIELD_SET(*this, FIX::AccountType);
  55. FIELD_SET(*this, FIX::DayBookingInst);
  56. FIELD_SET(*this, FIX::BookingUnit);
  57. FIELD_SET(*this, FIX::PreallocMethod);
  58. FIELD_SET(*this, FIX::AllocID);
  59. FIELD_SET(*this, FIX::NoAllocs);
  60. class NoAllocs: public FIX::Group
  61. {
  62. public:
  63. NoAllocs() : FIX::Group(78,79,FIX::message_order(79,661,736,467,539,80,0)) {}
  64. FIELD_SET(*this, FIX::AllocAccount);
  65. FIELD_SET(*this, FIX::AllocAcctIDSource);
  66. FIELD_SET(*this, FIX::AllocSettlCurrency);
  67. FIELD_SET(*this, FIX::IndividualAllocID);
  68. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  69. class NoNestedPartyIDs: public FIX::Group
  70. {
  71. public:
  72. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  73. FIELD_SET(*this, FIX::NestedPartyID);
  74. FIELD_SET(*this, FIX::NestedPartyIDSource);
  75. FIELD_SET(*this, FIX::NestedPartyRole);
  76. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  77. class NoNestedPartySubIDs: public FIX::Group
  78. {
  79. public:
  80. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  81. FIELD_SET(*this, FIX::NestedPartySubID);
  82. FIELD_SET(*this, FIX::NestedPartySubIDType);
  83. };
  84. };
  85. FIELD_SET(*this, FIX::AllocQty);
  86. };
  87. FIELD_SET(*this, FIX::SettlType);
  88. FIELD_SET(*this, FIX::SettlDate);
  89. FIELD_SET(*this, FIX::CashMargin);
  90. FIELD_SET(*this, FIX::ClearingFeeIndicator);
  91. FIELD_SET(*this, FIX::HandlInst);
  92. FIELD_SET(*this, FIX::ExecInst);
  93. FIELD_SET(*this, FIX::MinQty);
  94. FIELD_SET(*this, FIX::MatchIncrement);
  95. FIELD_SET(*this, FIX::MaxPriceLevels);
  96. FIELD_SET(*this, FIX::DisplayQty);
  97. FIELD_SET(*this, FIX::SecondaryDisplayQty);
  98. FIELD_SET(*this, FIX::DisplayWhen);
  99. FIELD_SET(*this, FIX::DisplayMethod);
  100. FIELD_SET(*this, FIX::DisplayLowQty);
  101. FIELD_SET(*this, FIX::DisplayHighQty);
  102. FIELD_SET(*this, FIX::DisplayMinIncr);
  103. FIELD_SET(*this, FIX::RefreshQty);
  104. FIELD_SET(*this, FIX::MaxFloor);
  105. FIELD_SET(*this, FIX::ExDestination);
  106. FIELD_SET(*this, FIX::ExDestinationIDSource);
  107. FIELD_SET(*this, FIX::NoTradingSessions);
  108. class NoTradingSessions: public FIX::Group
  109. {
  110. public:
  111. NoTradingSessions() : FIX::Group(386,336,FIX::message_order(336,625,0)) {}
  112. FIELD_SET(*this, FIX::TradingSessionID);
  113. FIELD_SET(*this, FIX::TradingSessionSubID);
  114. };
  115. FIELD_SET(*this, FIX::Symbol);
  116. FIELD_SET(*this, FIX::SymbolSfx);
  117. FIELD_SET(*this, FIX::SecurityID);
  118. FIELD_SET(*this, FIX::SecurityIDSource);
  119. FIELD_SET(*this, FIX::Product);
  120. FIELD_SET(*this, FIX::ProductComplex);
  121. FIELD_SET(*this, FIX::SecurityGroup);
  122. FIELD_SET(*this, FIX::CFICode);
  123. FIELD_SET(*this, FIX::SecurityType);
  124. FIELD_SET(*this, FIX::SecuritySubType);
  125. FIELD_SET(*this, FIX::MaturityMonthYear);
  126. FIELD_SET(*this, FIX::MaturityDate);
  127. FIELD_SET(*this, FIX::MaturityTime);
  128. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  129. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  130. FIELD_SET(*this, FIX::SecurityStatus);
  131. FIELD_SET(*this, FIX::CouponPaymentDate);
  132. FIELD_SET(*this, FIX::IssueDate);
  133. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  134. FIELD_SET(*this, FIX::RepurchaseTerm);
  135. FIELD_SET(*this, FIX::RepurchaseRate);
  136. FIELD_SET(*this, FIX::Factor);
  137. FIELD_SET(*this, FIX::CreditRating);
  138. FIELD_SET(*this, FIX::InstrRegistry);
  139. FIELD_SET(*this, FIX::CountryOfIssue);
  140. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  141. FIELD_SET(*this, FIX::LocaleOfIssue);
  142. FIELD_SET(*this, FIX::RedemptionDate);
  143. FIELD_SET(*this, FIX::StrikePrice);
  144. FIELD_SET(*this, FIX::StrikeCurrency);
  145. FIELD_SET(*this, FIX::StrikeMultiplier);
  146. FIELD_SET(*this, FIX::StrikeValue);
  147. FIELD_SET(*this, FIX::OptAttribute);
  148. FIELD_SET(*this, FIX::ContractMultiplier);
  149. FIELD_SET(*this, FIX::MinPriceIncrement);
  150. FIELD_SET(*this, FIX::MinPriceIncrementAmount);
  151. FIELD_SET(*this, FIX::UnitOfMeasure);
  152. FIELD_SET(*this, FIX::UnitOfMeasureQty);
  153. FIELD_SET(*this, FIX::PriceUnitOfMeasure);
  154. FIELD_SET(*this, FIX::PriceUnitOfMeasureQty);
  155. FIELD_SET(*this, FIX::SettlMethod);
  156. FIELD_SET(*this, FIX::ExerciseStyle);
  157. FIELD_SET(*this, FIX::OptPayoutAmount);
  158. FIELD_SET(*this, FIX::PriceQuoteMethod);
  159. FIELD_SET(*this, FIX::ValuationMethod);
  160. FIELD_SET(*this, FIX::ListMethod);
  161. FIELD_SET(*this, FIX::CapPrice);
  162. FIELD_SET(*this, FIX::FloorPrice);
  163. FIELD_SET(*this, FIX::PutOrCall);
  164. FIELD_SET(*this, FIX::FlexibleIndicator);
  165. FIELD_SET(*this, FIX::FlexProductEligibilityIndicator);
  166. FIELD_SET(*this, FIX::TimeUnit);
  167. FIELD_SET(*this, FIX::CouponRate);
  168. FIELD_SET(*this, FIX::SecurityExchange);
  169. FIELD_SET(*this, FIX::PositionLimit);
  170. FIELD_SET(*this, FIX::NTPositionLimit);
  171. FIELD_SET(*this, FIX::Issuer);
  172. FIELD_SET(*this, FIX::EncodedIssuerLen);
  173. FIELD_SET(*this, FIX::EncodedIssuer);
  174. FIELD_SET(*this, FIX::SecurityDesc);
  175. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  176. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  177. FIELD_SET(*this, FIX::Pool);
  178. FIELD_SET(*this, FIX::ContractSettlMonth);
  179. FIELD_SET(*this, FIX::CPProgram);
  180. FIELD_SET(*this, FIX::CPRegType);
  181. FIELD_SET(*this, FIX::DatedDate);
  182. FIELD_SET(*this, FIX::InterestAccrualDate);
  183. FIELD_SET(*this, FIX::ContractMultiplierUnit);
  184. FIELD_SET(*this, FIX::FlowScheduleType);
  185. FIELD_SET(*this, FIX::RestructuringType);
  186. FIELD_SET(*this, FIX::Seniority);
  187. FIELD_SET(*this, FIX::NotionalPercentageOutstanding);
  188. FIELD_SET(*this, FIX::OriginalNotionalPercentageOutstanding);
  189. FIELD_SET(*this, FIX::AttachmentPoint);
  190. FIELD_SET(*this, FIX::DetachmentPoint);
  191. FIELD_SET(*this, FIX::StrikePriceDeterminationMethod);
  192. FIELD_SET(*this, FIX::StrikePriceBoundaryMethod);
  193. FIELD_SET(*this, FIX::StrikePriceBoundaryPrecision);
  194. FIELD_SET(*this, FIX::UnderlyingPriceDeterminationMethod);
  195. FIELD_SET(*this, FIX::OptPayoutType);
  196. FIELD_SET(*this, FIX::AgreementDesc);
  197. FIELD_SET(*this, FIX::AgreementID);
  198. FIELD_SET(*this, FIX::AgreementDate);
  199. FIELD_SET(*this, FIX::AgreementCurrency);
  200. FIELD_SET(*this, FIX::TerminationType);
  201. FIELD_SET(*this, FIX::StartDate);
  202. FIELD_SET(*this, FIX::EndDate);
  203. FIELD_SET(*this, FIX::DeliveryType);
  204. FIELD_SET(*this, FIX::MarginRatio);
  205. FIELD_SET(*this, FIX::NoUnderlyings);
  206. class NoUnderlyings: public FIX::Group
  207. {
  208. public:
  209. NoUnderlyings() : FIX::Group(711,311,FIX::message_order(311,312,309,305,462,463,310,763,313,542,1213,241,242,243,244,245,246,256,595,592,593,594,247,316,941,317,436,998,1423,1424,1425,1000,1419,435,308,306,362,363,307,364,365,877,878,972,318,879,975,973,974,810,882,883,884,885,886,1044,1045,1046,1038,1039,315,1437,1441,1453,1454,1455,1456,1459,1460,0)) {}
  210. FIELD_SET(*this, FIX::UnderlyingSymbol);
  211. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  212. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  213. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  214. FIELD_SET(*this, FIX::UnderlyingProduct);
  215. FIELD_SET(*this, FIX::UnderlyingCFICode);
  216. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  217. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  218. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  219. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  220. FIELD_SET(*this, FIX::UnderlyingMaturityTime);
  221. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  222. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  223. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  224. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  225. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  226. FIELD_SET(*this, FIX::UnderlyingFactor);
  227. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  228. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  229. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  230. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  231. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  232. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  233. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  234. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  235. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  236. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  237. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasure);
  238. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasureQty);
  239. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasure);
  240. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasureQty);
  241. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  242. FIELD_SET(*this, FIX::UnderlyingExerciseStyle);
  243. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  244. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  245. FIELD_SET(*this, FIX::UnderlyingIssuer);
  246. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  247. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  248. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  249. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  250. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  251. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  252. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  253. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  254. FIELD_SET(*this, FIX::UnderlyingCurrency);
  255. FIELD_SET(*this, FIX::UnderlyingQty);
  256. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  257. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  258. FIELD_SET(*this, FIX::UnderlyingCashType);
  259. FIELD_SET(*this, FIX::UnderlyingPx);
  260. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  261. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  262. FIELD_SET(*this, FIX::UnderlyingStartValue);
  263. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  264. FIELD_SET(*this, FIX::UnderlyingEndValue);
  265. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  266. FIELD_SET(*this, FIX::UnderlyingFXRate);
  267. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  268. FIELD_SET(*this, FIX::UnderlyingCapValue);
  269. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  270. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  271. FIELD_SET(*this, FIX::UnderlyingContractMultiplierUnit);
  272. FIELD_SET(*this, FIX::UnderlyingFlowScheduleType);
  273. FIELD_SET(*this, FIX::UnderlyingRestructuringType);
  274. FIELD_SET(*this, FIX::UnderlyingSeniority);
  275. FIELD_SET(*this, FIX::UnderlyingNotionalPercentageOutstanding);
  276. FIELD_SET(*this, FIX::UnderlyingOriginalNotionalPercentageOutstanding);
  277. FIELD_SET(*this, FIX::UnderlyingAttachmentPoint);
  278. FIELD_SET(*this, FIX::UnderlyingDetachmentPoint);
  279. };
  280. FIELD_SET(*this, FIX::Side);
  281. FIELD_SET(*this, FIX::TransactTime);
  282. FIELD_SET(*this, FIX::QtyType);
  283. FIELD_SET(*this, FIX::OrderQty);
  284. FIELD_SET(*this, FIX::CashOrderQty);
  285. FIELD_SET(*this, FIX::OrderPercent);
  286. FIELD_SET(*this, FIX::RoundingDirection);
  287. FIELD_SET(*this, FIX::RoundingModulus);
  288. FIELD_SET(*this, FIX::OrdType);
  289. FIELD_SET(*this, FIX::PriceType);
  290. FIELD_SET(*this, FIX::Price);
  291. FIELD_SET(*this, FIX::PriceProtectionScope);
  292. FIELD_SET(*this, FIX::StopPx);
  293. FIELD_SET(*this, FIX::TriggerType);
  294. FIELD_SET(*this, FIX::TriggerAction);
  295. FIELD_SET(*this, FIX::TriggerPrice);
  296. FIELD_SET(*this, FIX::TriggerSymbol);
  297. FIELD_SET(*this, FIX::TriggerSecurityID);
  298. FIELD_SET(*this, FIX::TriggerSecurityIDSource);
  299. FIELD_SET(*this, FIX::TriggerSecurityDesc);
  300. FIELD_SET(*this, FIX::TriggerPriceType);
  301. FIELD_SET(*this, FIX::TriggerPriceTypeScope);
  302. FIELD_SET(*this, FIX::TriggerPriceDirection);
  303. FIELD_SET(*this, FIX::TriggerNewPrice);
  304. FIELD_SET(*this, FIX::TriggerOrderType);
  305. FIELD_SET(*this, FIX::TriggerNewQty);
  306. FIELD_SET(*this, FIX::TriggerTradingSessionID);
  307. FIELD_SET(*this, FIX::TriggerTradingSessionSubID);
  308. FIELD_SET(*this, FIX::Spread);
  309. FIELD_SET(*this, FIX::BenchmarkCurveCurrency);
  310. FIELD_SET(*this, FIX::BenchmarkCurveName);
  311. FIELD_SET(*this, FIX::BenchmarkCurvePoint);
  312. FIELD_SET(*this, FIX::BenchmarkPrice);
  313. FIELD_SET(*this, FIX::BenchmarkPriceType);
  314. FIELD_SET(*this, FIX::BenchmarkSecurityID);
  315. FIELD_SET(*this, FIX::BenchmarkSecurityIDSource);
  316. FIELD_SET(*this, FIX::YieldType);
  317. FIELD_SET(*this, FIX::Yield);
  318. FIELD_SET(*this, FIX::YieldCalcDate);
  319. FIELD_SET(*this, FIX::YieldRedemptionDate);
  320. FIELD_SET(*this, FIX::YieldRedemptionPrice);
  321. FIELD_SET(*this, FIX::YieldRedemptionPriceType);
  322. FIELD_SET(*this, FIX::PegOffsetValue);
  323. FIELD_SET(*this, FIX::PegPriceType);
  324. FIELD_SET(*this, FIX::PegMoveType);
  325. FIELD_SET(*this, FIX::PegOffsetType);
  326. FIELD_SET(*this, FIX::PegLimitType);
  327. FIELD_SET(*this, FIX::PegRoundDirection);
  328. FIELD_SET(*this, FIX::PegScope);
  329. FIELD_SET(*this, FIX::PegSecurityIDSource);
  330. FIELD_SET(*this, FIX::PegSecurityID);
  331. FIELD_SET(*this, FIX::PegSymbol);
  332. FIELD_SET(*this, FIX::PegSecurityDesc);
  333. FIELD_SET(*this, FIX::DiscretionInst);
  334. FIELD_SET(*this, FIX::DiscretionOffsetValue);
  335. FIELD_SET(*this, FIX::DiscretionMoveType);
  336. FIELD_SET(*this, FIX::DiscretionOffsetType);
  337. FIELD_SET(*this, FIX::DiscretionLimitType);
  338. FIELD_SET(*this, FIX::DiscretionRoundDirection);
  339. FIELD_SET(*this, FIX::DiscretionScope);
  340. FIELD_SET(*this, FIX::TargetStrategy);
  341. FIELD_SET(*this, FIX::NoStrategyParameters);
  342. class NoStrategyParameters: public FIX::Group
  343. {
  344. public:
  345. NoStrategyParameters() : FIX::Group(957,958,FIX::message_order(958,959,960,0)) {}
  346. FIELD_SET(*this, FIX::StrategyParameterName);
  347. FIELD_SET(*this, FIX::StrategyParameterType);
  348. FIELD_SET(*this, FIX::StrategyParameterValue);
  349. };
  350. FIELD_SET(*this, FIX::TargetStrategyParameters);
  351. FIELD_SET(*this, FIX::ParticipationRate);
  352. FIELD_SET(*this, FIX::ComplianceID);
  353. FIELD_SET(*this, FIX::SolicitedFlag);
  354. FIELD_SET(*this, FIX::Currency);
  355. FIELD_SET(*this, FIX::TimeInForce);
  356. FIELD_SET(*this, FIX::EffectiveTime);
  357. FIELD_SET(*this, FIX::ExpireDate);
  358. FIELD_SET(*this, FIX::ExpireTime);
  359. FIELD_SET(*this, FIX::GTBookingInst);
  360. FIELD_SET(*this, FIX::Commission);
  361. FIELD_SET(*this, FIX::CommType);
  362. FIELD_SET(*this, FIX::CommCurrency);
  363. FIELD_SET(*this, FIX::FundRenewWaiv);
  364. FIELD_SET(*this, FIX::OrderCapacity);
  365. FIELD_SET(*this, FIX::OrderRestrictions);
  366. FIELD_SET(*this, FIX::PreTradeAnonymity);
  367. FIELD_SET(*this, FIX::CustOrderCapacity);
  368. FIELD_SET(*this, FIX::ForexReq);
  369. FIELD_SET(*this, FIX::SettlCurrency);
  370. FIELD_SET(*this, FIX::BookingType);
  371. FIELD_SET(*this, FIX::Text);
  372. FIELD_SET(*this, FIX::EncodedTextLen);
  373. FIELD_SET(*this, FIX::EncodedText);
  374. FIELD_SET(*this, FIX::SettlDate2);
  375. FIELD_SET(*this, FIX::OrderQty2);
  376. FIELD_SET(*this, FIX::Price2);
  377. FIELD_SET(*this, FIX::PositionEffect);
  378. FIELD_SET(*this, FIX::CoveredOrUncovered);
  379. FIELD_SET(*this, FIX::MaxShow);
  380. FIELD_SET(*this, FIX::LocateReqd);
  381. FIELD_SET(*this, FIX::CancellationRights);
  382. FIELD_SET(*this, FIX::MoneyLaunderingStatus);
  383. FIELD_SET(*this, FIX::RegistID);
  384. FIELD_SET(*this, FIX::Designation);
  385. FIELD_SET(*this, FIX::ManualOrderIndicator);
  386. FIELD_SET(*this, FIX::CustDirectedOrder);
  387. FIELD_SET(*this, FIX::ReceivedDeptID);
  388. FIELD_SET(*this, FIX::CustOrderHandlingInst);
  389. FIELD_SET(*this, FIX::OrderHandlingInstSource);
  390. FIELD_SET(*this, FIX::NoTrdRegTimestamps);
  391. class NoTrdRegTimestamps: public FIX::Group
  392. {
  393. public:
  394. NoTrdRegTimestamps() : FIX::Group(768,769,FIX::message_order(769,770,771,1033,1034,1035,0)) {}
  395. FIELD_SET(*this, FIX::TrdRegTimestamp);
  396. FIELD_SET(*this, FIX::TrdRegTimestampType);
  397. FIELD_SET(*this, FIX::TrdRegTimestampOrigin);
  398. FIELD_SET(*this, FIX::DeskType);
  399. FIELD_SET(*this, FIX::DeskTypeSource);
  400. FIELD_SET(*this, FIX::DeskOrderHandlingInst);
  401. };
  402. };
  403. }
  404. #endif