MultilegOrderCancelReplace.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. #ifndef FIX50_MULTILEGORDERCANCELREPLACE_H
  2. #define FIX50_MULTILEGORDERCANCELREPLACE_H
  3. #include "Message.h"
  4. namespace FIX50
  5. {
  6. class MultilegOrderCancelReplace : public Message
  7. {
  8. public:
  9. MultilegOrderCancelReplace() : Message(MsgType()) {}
  10. MultilegOrderCancelReplace(const FIX::Message& m) : Message(m) {}
  11. MultilegOrderCancelReplace(const Message& m) : Message(m) {}
  12. MultilegOrderCancelReplace(const MultilegOrderCancelReplace& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("AC"); }
  14. MultilegOrderCancelReplace(
  15. const FIX::OrigClOrdID& aOrigClOrdID,
  16. const FIX::ClOrdID& aClOrdID,
  17. const FIX::Side& aSide,
  18. const FIX::TransactTime& aTransactTime,
  19. const FIX::OrdType& aOrdType )
  20. : Message(MsgType())
  21. {
  22. set(aOrigClOrdID);
  23. set(aClOrdID);
  24. set(aSide);
  25. set(aTransactTime);
  26. set(aOrdType);
  27. }
  28. FIELD_SET(*this, FIX::OrderID);
  29. FIELD_SET(*this, FIX::OrigClOrdID);
  30. FIELD_SET(*this, FIX::ClOrdID);
  31. FIELD_SET(*this, FIX::SecondaryClOrdID);
  32. FIELD_SET(*this, FIX::ClOrdLinkID);
  33. FIELD_SET(*this, FIX::OrigOrdModTime);
  34. FIELD_SET(*this, FIX::NoPartyIDs);
  35. class NoPartyIDs: public FIX::Group
  36. {
  37. public:
  38. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  39. FIELD_SET(*this, FIX::PartyID);
  40. FIELD_SET(*this, FIX::PartyIDSource);
  41. FIELD_SET(*this, FIX::PartyRole);
  42. FIELD_SET(*this, FIX::NoPartySubIDs);
  43. class NoPartySubIDs: public FIX::Group
  44. {
  45. public:
  46. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  47. FIELD_SET(*this, FIX::PartySubID);
  48. FIELD_SET(*this, FIX::PartySubIDType);
  49. };
  50. };
  51. FIELD_SET(*this, FIX::TradeOriginationDate);
  52. FIELD_SET(*this, FIX::TradeDate);
  53. FIELD_SET(*this, FIX::Account);
  54. FIELD_SET(*this, FIX::AcctIDSource);
  55. FIELD_SET(*this, FIX::AccountType);
  56. FIELD_SET(*this, FIX::DayBookingInst);
  57. FIELD_SET(*this, FIX::BookingUnit);
  58. FIELD_SET(*this, FIX::PreallocMethod);
  59. FIELD_SET(*this, FIX::AllocID);
  60. FIELD_SET(*this, FIX::NoAllocs);
  61. class NoAllocs: public FIX::Group
  62. {
  63. public:
  64. NoAllocs() : FIX::Group(78,79,FIX::message_order(79,661,736,467,948,80,0)) {}
  65. FIELD_SET(*this, FIX::AllocAccount);
  66. FIELD_SET(*this, FIX::AllocAcctIDSource);
  67. FIELD_SET(*this, FIX::AllocSettlCurrency);
  68. FIELD_SET(*this, FIX::IndividualAllocID);
  69. FIELD_SET(*this, FIX::NoNested3PartyIDs);
  70. class NoNested3PartyIDs: public FIX::Group
  71. {
  72. public:
  73. NoNested3PartyIDs() : FIX::Group(948,949,FIX::message_order(949,950,951,952,0)) {}
  74. FIELD_SET(*this, FIX::Nested3PartyID);
  75. FIELD_SET(*this, FIX::Nested3PartyIDSource);
  76. FIELD_SET(*this, FIX::Nested3PartyRole);
  77. FIELD_SET(*this, FIX::NoNested3PartySubIDs);
  78. class NoNested3PartySubIDs: public FIX::Group
  79. {
  80. public:
  81. NoNested3PartySubIDs() : FIX::Group(952,953,FIX::message_order(953,954,0)) {}
  82. FIELD_SET(*this, FIX::Nested3PartySubID);
  83. FIELD_SET(*this, FIX::Nested3PartySubIDType);
  84. };
  85. };
  86. FIELD_SET(*this, FIX::AllocQty);
  87. };
  88. FIELD_SET(*this, FIX::SettlType);
  89. FIELD_SET(*this, FIX::SettlDate);
  90. FIELD_SET(*this, FIX::CashMargin);
  91. FIELD_SET(*this, FIX::ClearingFeeIndicator);
  92. FIELD_SET(*this, FIX::HandlInst);
  93. FIELD_SET(*this, FIX::ExecInst);
  94. FIELD_SET(*this, FIX::MinQty);
  95. FIELD_SET(*this, FIX::MatchIncrement);
  96. FIELD_SET(*this, FIX::MaxPriceLevels);
  97. FIELD_SET(*this, FIX::DisplayQty);
  98. FIELD_SET(*this, FIX::SecondaryDisplayQty);
  99. FIELD_SET(*this, FIX::DisplayWhen);
  100. FIELD_SET(*this, FIX::DisplayMethod);
  101. FIELD_SET(*this, FIX::DisplayLowQty);
  102. FIELD_SET(*this, FIX::DisplayHighQty);
  103. FIELD_SET(*this, FIX::DisplayMinIncr);
  104. FIELD_SET(*this, FIX::RefreshQty);
  105. FIELD_SET(*this, FIX::MaxFloor);
  106. FIELD_SET(*this, FIX::ExDestination);
  107. FIELD_SET(*this, FIX::ExDestinationIDSource);
  108. FIELD_SET(*this, FIX::NoTradingSessions);
  109. class NoTradingSessions: public FIX::Group
  110. {
  111. public:
  112. NoTradingSessions() : FIX::Group(386,336,FIX::message_order(336,625,0)) {}
  113. FIELD_SET(*this, FIX::TradingSessionID);
  114. FIELD_SET(*this, FIX::TradingSessionSubID);
  115. };
  116. FIELD_SET(*this, FIX::ProcessCode);
  117. FIELD_SET(*this, FIX::Side);
  118. FIELD_SET(*this, FIX::Symbol);
  119. FIELD_SET(*this, FIX::SymbolSfx);
  120. FIELD_SET(*this, FIX::SecurityID);
  121. FIELD_SET(*this, FIX::SecurityIDSource);
  122. FIELD_SET(*this, FIX::Product);
  123. FIELD_SET(*this, FIX::CFICode);
  124. FIELD_SET(*this, FIX::SecurityType);
  125. FIELD_SET(*this, FIX::SecuritySubType);
  126. FIELD_SET(*this, FIX::MaturityMonthYear);
  127. FIELD_SET(*this, FIX::MaturityDate);
  128. FIELD_SET(*this, FIX::MaturityTime);
  129. FIELD_SET(*this, FIX::PutOrCall);
  130. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  131. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  132. FIELD_SET(*this, FIX::SecurityStatus);
  133. FIELD_SET(*this, FIX::CouponPaymentDate);
  134. FIELD_SET(*this, FIX::IssueDate);
  135. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  136. FIELD_SET(*this, FIX::RepurchaseTerm);
  137. FIELD_SET(*this, FIX::RepurchaseRate);
  138. FIELD_SET(*this, FIX::Factor);
  139. FIELD_SET(*this, FIX::CreditRating);
  140. FIELD_SET(*this, FIX::InstrRegistry);
  141. FIELD_SET(*this, FIX::CountryOfIssue);
  142. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  143. FIELD_SET(*this, FIX::LocaleOfIssue);
  144. FIELD_SET(*this, FIX::RedemptionDate);
  145. FIELD_SET(*this, FIX::StrikePrice);
  146. FIELD_SET(*this, FIX::StrikeCurrency);
  147. FIELD_SET(*this, FIX::StrikeMultiplier);
  148. FIELD_SET(*this, FIX::StrikeValue);
  149. FIELD_SET(*this, FIX::OptAttribute);
  150. FIELD_SET(*this, FIX::ContractMultiplier);
  151. FIELD_SET(*this, FIX::MinPriceIncrement);
  152. FIELD_SET(*this, FIX::UnitOfMeasure);
  153. FIELD_SET(*this, FIX::TimeUnit);
  154. FIELD_SET(*this, FIX::CouponRate);
  155. FIELD_SET(*this, FIX::SecurityExchange);
  156. FIELD_SET(*this, FIX::PositionLimit);
  157. FIELD_SET(*this, FIX::NTPositionLimit);
  158. FIELD_SET(*this, FIX::Issuer);
  159. FIELD_SET(*this, FIX::EncodedIssuerLen);
  160. FIELD_SET(*this, FIX::EncodedIssuer);
  161. FIELD_SET(*this, FIX::SecurityDesc);
  162. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  163. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  164. FIELD_SET(*this, FIX::Pool);
  165. FIELD_SET(*this, FIX::ContractSettlMonth);
  166. FIELD_SET(*this, FIX::CPProgram);
  167. FIELD_SET(*this, FIX::CPRegType);
  168. FIELD_SET(*this, FIX::DatedDate);
  169. FIELD_SET(*this, FIX::InterestAccrualDate);
  170. FIELD_SET(*this, FIX::NoUnderlyings);
  171. class NoUnderlyings: public FIX::Group
  172. {
  173. public:
  174. NoUnderlyings() : FIX::Group(711,311,FIX::message_order(311,312,309,305,462,463,310,763,313,542,315,241,242,243,244,245,246,256,595,592,593,594,247,316,941,317,436,998,1000,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,0)) {}
  175. FIELD_SET(*this, FIX::UnderlyingSymbol);
  176. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  177. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  178. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  179. FIELD_SET(*this, FIX::UnderlyingProduct);
  180. FIELD_SET(*this, FIX::UnderlyingCFICode);
  181. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  182. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  183. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  184. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  185. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  186. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  187. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  188. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  189. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  190. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  191. FIELD_SET(*this, FIX::UnderlyingFactor);
  192. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  193. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  194. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  195. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  196. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  197. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  198. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  199. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  200. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  201. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  202. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasure);
  203. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  204. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  205. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  206. FIELD_SET(*this, FIX::UnderlyingIssuer);
  207. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  208. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  209. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  210. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  211. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  212. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  213. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  214. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  215. FIELD_SET(*this, FIX::UnderlyingCurrency);
  216. FIELD_SET(*this, FIX::UnderlyingQty);
  217. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  218. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  219. FIELD_SET(*this, FIX::UnderlyingCashType);
  220. FIELD_SET(*this, FIX::UnderlyingPx);
  221. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  222. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  223. FIELD_SET(*this, FIX::UnderlyingStartValue);
  224. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  225. FIELD_SET(*this, FIX::UnderlyingEndValue);
  226. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  227. FIELD_SET(*this, FIX::UnderlyingFXRate);
  228. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  229. FIELD_SET(*this, FIX::UnderlyingCapValue);
  230. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  231. };
  232. FIELD_SET(*this, FIX::PrevClosePx);
  233. FIELD_SET(*this, FIX::SwapPoints);
  234. FIELD_SET(*this, FIX::NoLegs);
  235. class NoLegs: public FIX::Group
  236. {
  237. public:
  238. NoLegs() : FIX::Group(555,600,FIX::message_order(600,601,602,603,607,608,609,764,610,611,248,249,250,251,252,253,257,599,596,597,598,254,612,942,613,614,999,1001,615,616,617,618,619,620,621,622,623,624,556,740,739,955,956,1017,687,690,683,670,564,565,539,654,566,587,588,685,0)) {}
  239. FIELD_SET(*this, FIX::LegSymbol);
  240. FIELD_SET(*this, FIX::LegSymbolSfx);
  241. FIELD_SET(*this, FIX::LegSecurityID);
  242. FIELD_SET(*this, FIX::LegSecurityIDSource);
  243. FIELD_SET(*this, FIX::LegProduct);
  244. FIELD_SET(*this, FIX::LegCFICode);
  245. FIELD_SET(*this, FIX::LegSecurityType);
  246. FIELD_SET(*this, FIX::LegSecuritySubType);
  247. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  248. FIELD_SET(*this, FIX::LegMaturityDate);
  249. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  250. FIELD_SET(*this, FIX::LegIssueDate);
  251. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  252. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  253. FIELD_SET(*this, FIX::LegRepurchaseRate);
  254. FIELD_SET(*this, FIX::LegFactor);
  255. FIELD_SET(*this, FIX::LegCreditRating);
  256. FIELD_SET(*this, FIX::LegInstrRegistry);
  257. FIELD_SET(*this, FIX::LegCountryOfIssue);
  258. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  259. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  260. FIELD_SET(*this, FIX::LegRedemptionDate);
  261. FIELD_SET(*this, FIX::LegStrikePrice);
  262. FIELD_SET(*this, FIX::LegStrikeCurrency);
  263. FIELD_SET(*this, FIX::LegOptAttribute);
  264. FIELD_SET(*this, FIX::LegContractMultiplier);
  265. FIELD_SET(*this, FIX::LegUnitOfMeasure);
  266. FIELD_SET(*this, FIX::LegTimeUnit);
  267. FIELD_SET(*this, FIX::LegCouponRate);
  268. FIELD_SET(*this, FIX::LegSecurityExchange);
  269. FIELD_SET(*this, FIX::LegIssuer);
  270. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  271. FIELD_SET(*this, FIX::EncodedLegIssuer);
  272. FIELD_SET(*this, FIX::LegSecurityDesc);
  273. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  274. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  275. FIELD_SET(*this, FIX::LegRatioQty);
  276. FIELD_SET(*this, FIX::LegSide);
  277. FIELD_SET(*this, FIX::LegCurrency);
  278. FIELD_SET(*this, FIX::LegPool);
  279. FIELD_SET(*this, FIX::LegDatedDate);
  280. FIELD_SET(*this, FIX::LegContractSettlMonth);
  281. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  282. FIELD_SET(*this, FIX::LegOptionRatio);
  283. FIELD_SET(*this, FIX::LegQty);
  284. FIELD_SET(*this, FIX::LegSwapType);
  285. FIELD_SET(*this, FIX::NoLegStipulations);
  286. class NoLegStipulations: public FIX::Group
  287. {
  288. public:
  289. NoLegStipulations() : FIX::Group(683,688,FIX::message_order(688,689,0)) {}
  290. FIELD_SET(*this, FIX::LegStipulationType);
  291. FIELD_SET(*this, FIX::LegStipulationValue);
  292. };
  293. FIELD_SET(*this, FIX::NoLegAllocs);
  294. class NoLegAllocs: public FIX::Group
  295. {
  296. public:
  297. NoLegAllocs() : FIX::Group(670,671,FIX::message_order(671,672,756,673,674,675,0)) {}
  298. FIELD_SET(*this, FIX::LegAllocAccount);
  299. FIELD_SET(*this, FIX::LegIndividualAllocID);
  300. FIELD_SET(*this, FIX::NoNested2PartyIDs);
  301. class NoNested2PartyIDs: public FIX::Group
  302. {
  303. public:
  304. NoNested2PartyIDs() : FIX::Group(756,757,FIX::message_order(757,758,759,806,0)) {}
  305. FIELD_SET(*this, FIX::Nested2PartyID);
  306. FIELD_SET(*this, FIX::Nested2PartyIDSource);
  307. FIELD_SET(*this, FIX::Nested2PartyRole);
  308. FIELD_SET(*this, FIX::NoNested2PartySubIDs);
  309. class NoNested2PartySubIDs: public FIX::Group
  310. {
  311. public:
  312. NoNested2PartySubIDs() : FIX::Group(806,760,FIX::message_order(760,807,0)) {}
  313. FIELD_SET(*this, FIX::Nested2PartySubID);
  314. FIELD_SET(*this, FIX::Nested2PartySubIDType);
  315. };
  316. };
  317. FIELD_SET(*this, FIX::LegAllocQty);
  318. FIELD_SET(*this, FIX::LegAllocAcctIDSource);
  319. FIELD_SET(*this, FIX::LegSettlCurrency);
  320. };
  321. FIELD_SET(*this, FIX::LegPositionEffect);
  322. FIELD_SET(*this, FIX::LegCoveredOrUncovered);
  323. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  324. class NoNestedPartyIDs: public FIX::Group
  325. {
  326. public:
  327. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  328. FIELD_SET(*this, FIX::NestedPartyID);
  329. FIELD_SET(*this, FIX::NestedPartyIDSource);
  330. FIELD_SET(*this, FIX::NestedPartyRole);
  331. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  332. class NoNestedPartySubIDs: public FIX::Group
  333. {
  334. public:
  335. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  336. FIELD_SET(*this, FIX::NestedPartySubID);
  337. FIELD_SET(*this, FIX::NestedPartySubIDType);
  338. };
  339. };
  340. FIELD_SET(*this, FIX::LegRefID);
  341. FIELD_SET(*this, FIX::LegPrice);
  342. FIELD_SET(*this, FIX::LegSettlType);
  343. FIELD_SET(*this, FIX::LegSettlDate);
  344. FIELD_SET(*this, FIX::LegOrderQty);
  345. };
  346. FIELD_SET(*this, FIX::LocateReqd);
  347. FIELD_SET(*this, FIX::TransactTime);
  348. FIELD_SET(*this, FIX::QtyType);
  349. FIELD_SET(*this, FIX::OrderQty);
  350. FIELD_SET(*this, FIX::CashOrderQty);
  351. FIELD_SET(*this, FIX::OrderPercent);
  352. FIELD_SET(*this, FIX::RoundingDirection);
  353. FIELD_SET(*this, FIX::RoundingModulus);
  354. FIELD_SET(*this, FIX::OrdType);
  355. FIELD_SET(*this, FIX::PriceType);
  356. FIELD_SET(*this, FIX::Price);
  357. FIELD_SET(*this, FIX::PriceProtectionScope);
  358. FIELD_SET(*this, FIX::StopPx);
  359. FIELD_SET(*this, FIX::TriggerType);
  360. FIELD_SET(*this, FIX::TriggerAction);
  361. FIELD_SET(*this, FIX::TriggerPrice);
  362. FIELD_SET(*this, FIX::TriggerSymbol);
  363. FIELD_SET(*this, FIX::TriggerSecurityID);
  364. FIELD_SET(*this, FIX::TriggerSecurityIDSource);
  365. FIELD_SET(*this, FIX::TriggerSecurityDesc);
  366. FIELD_SET(*this, FIX::TriggerPriceType);
  367. FIELD_SET(*this, FIX::TriggerPriceTypeScope);
  368. FIELD_SET(*this, FIX::TriggerPriceDirection);
  369. FIELD_SET(*this, FIX::TriggerNewPrice);
  370. FIELD_SET(*this, FIX::TriggerOrderType);
  371. FIELD_SET(*this, FIX::TriggerNewQty);
  372. FIELD_SET(*this, FIX::TriggerTradingSessionID);
  373. FIELD_SET(*this, FIX::TriggerTradingSessionSubID);
  374. FIELD_SET(*this, FIX::Currency);
  375. FIELD_SET(*this, FIX::ComplianceID);
  376. FIELD_SET(*this, FIX::SolicitedFlag);
  377. FIELD_SET(*this, FIX::IOIID);
  378. FIELD_SET(*this, FIX::QuoteID);
  379. FIELD_SET(*this, FIX::TimeInForce);
  380. FIELD_SET(*this, FIX::EffectiveTime);
  381. FIELD_SET(*this, FIX::ExpireDate);
  382. FIELD_SET(*this, FIX::ExpireTime);
  383. FIELD_SET(*this, FIX::GTBookingInst);
  384. FIELD_SET(*this, FIX::Commission);
  385. FIELD_SET(*this, FIX::CommType);
  386. FIELD_SET(*this, FIX::CommCurrency);
  387. FIELD_SET(*this, FIX::FundRenewWaiv);
  388. FIELD_SET(*this, FIX::OrderCapacity);
  389. FIELD_SET(*this, FIX::OrderRestrictions);
  390. FIELD_SET(*this, FIX::PreTradeAnonymity);
  391. FIELD_SET(*this, FIX::CustOrderCapacity);
  392. FIELD_SET(*this, FIX::ForexReq);
  393. FIELD_SET(*this, FIX::SettlCurrency);
  394. FIELD_SET(*this, FIX::BookingType);
  395. FIELD_SET(*this, FIX::Text);
  396. FIELD_SET(*this, FIX::EncodedTextLen);
  397. FIELD_SET(*this, FIX::EncodedText);
  398. FIELD_SET(*this, FIX::PositionEffect);
  399. FIELD_SET(*this, FIX::CoveredOrUncovered);
  400. FIELD_SET(*this, FIX::MaxShow);
  401. FIELD_SET(*this, FIX::PegOffsetValue);
  402. FIELD_SET(*this, FIX::PegPriceType);
  403. FIELD_SET(*this, FIX::PegMoveType);
  404. FIELD_SET(*this, FIX::PegOffsetType);
  405. FIELD_SET(*this, FIX::PegLimitType);
  406. FIELD_SET(*this, FIX::PegRoundDirection);
  407. FIELD_SET(*this, FIX::PegScope);
  408. FIELD_SET(*this, FIX::PegSecurityIDSource);
  409. FIELD_SET(*this, FIX::PegSecurityID);
  410. FIELD_SET(*this, FIX::PegSymbol);
  411. FIELD_SET(*this, FIX::PegSecurityDesc);
  412. FIELD_SET(*this, FIX::DiscretionInst);
  413. FIELD_SET(*this, FIX::DiscretionOffsetValue);
  414. FIELD_SET(*this, FIX::DiscretionMoveType);
  415. FIELD_SET(*this, FIX::DiscretionOffsetType);
  416. FIELD_SET(*this, FIX::DiscretionLimitType);
  417. FIELD_SET(*this, FIX::DiscretionRoundDirection);
  418. FIELD_SET(*this, FIX::DiscretionScope);
  419. FIELD_SET(*this, FIX::TargetStrategy);
  420. FIELD_SET(*this, FIX::NoStrategyParameters);
  421. class NoStrategyParameters: public FIX::Group
  422. {
  423. public:
  424. NoStrategyParameters() : FIX::Group(957,958,FIX::message_order(958,959,960,0)) {}
  425. FIELD_SET(*this, FIX::StrategyParameterName);
  426. FIELD_SET(*this, FIX::StrategyParameterType);
  427. FIELD_SET(*this, FIX::StrategyParameterValue);
  428. };
  429. FIELD_SET(*this, FIX::TargetStrategyParameters);
  430. FIELD_SET(*this, FIX::ParticipationRate);
  431. FIELD_SET(*this, FIX::CancellationRights);
  432. FIELD_SET(*this, FIX::MoneyLaunderingStatus);
  433. FIELD_SET(*this, FIX::RegistID);
  434. FIELD_SET(*this, FIX::Designation);
  435. FIELD_SET(*this, FIX::MultiLegRptTypeReq);
  436. };
  437. }
  438. #endif