CrossOrderCancelReplaceRequest.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. #ifndef FIX50_CROSSORDERCANCELREPLACEREQUEST_H
  2. #define FIX50_CROSSORDERCANCELREPLACEREQUEST_H
  3. #include "Message.h"
  4. namespace FIX50
  5. {
  6. class CrossOrderCancelReplaceRequest : public Message
  7. {
  8. public:
  9. CrossOrderCancelReplaceRequest() : Message(MsgType()) {}
  10. CrossOrderCancelReplaceRequest(const FIX::Message& m) : Message(m) {}
  11. CrossOrderCancelReplaceRequest(const Message& m) : Message(m) {}
  12. CrossOrderCancelReplaceRequest(const CrossOrderCancelReplaceRequest& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("t"); }
  14. CrossOrderCancelReplaceRequest(
  15. const FIX::CrossID& aCrossID,
  16. const FIX::OrigCrossID& aOrigCrossID,
  17. const FIX::CrossType& aCrossType,
  18. const FIX::CrossPrioritization& aCrossPrioritization,
  19. const FIX::TransactTime& aTransactTime,
  20. const FIX::OrdType& aOrdType )
  21. : Message(MsgType())
  22. {
  23. set(aCrossID);
  24. set(aOrigCrossID);
  25. set(aCrossType);
  26. set(aCrossPrioritization);
  27. set(aTransactTime);
  28. set(aOrdType);
  29. }
  30. FIELD_SET(*this, FIX::OrderID);
  31. FIELD_SET(*this, FIX::CrossID);
  32. FIELD_SET(*this, FIX::OrigCrossID);
  33. FIELD_SET(*this, FIX::HostCrossID);
  34. FIELD_SET(*this, FIX::CrossType);
  35. FIELD_SET(*this, FIX::CrossPrioritization);
  36. FIELD_SET(*this, FIX::NoRootPartyIDs);
  37. class NoRootPartyIDs: public FIX::Group
  38. {
  39. public:
  40. NoRootPartyIDs() : FIX::Group(1116,1117,FIX::message_order(1117,1118,1119,1120,0)) {}
  41. FIELD_SET(*this, FIX::RootPartyID);
  42. FIELD_SET(*this, FIX::RootPartyIDSource);
  43. FIELD_SET(*this, FIX::RootPartyRole);
  44. FIELD_SET(*this, FIX::NoRootPartySubIDs);
  45. class NoRootPartySubIDs: public FIX::Group
  46. {
  47. public:
  48. NoRootPartySubIDs() : FIX::Group(1120,1121,FIX::message_order(1121,1122,0)) {}
  49. FIELD_SET(*this, FIX::RootPartySubID);
  50. FIELD_SET(*this, FIX::RootPartySubIDType);
  51. };
  52. };
  53. FIELD_SET(*this, FIX::NoSides);
  54. class NoSides: public FIX::Group
  55. {
  56. public:
  57. NoSides() : FIX::Group(552,54,FIX::message_order(54,11,526,583,453,229,75,1,660,581,589,590,591,70,78,854,38,152,516,468,469,12,13,479,497,528,529,1091,582,121,120,775,58,354,355,77,203,544,635,377,659,962,0)) {}
  58. FIELD_SET(*this, FIX::Side);
  59. FIELD_SET(*this, FIX::ClOrdID);
  60. FIELD_SET(*this, FIX::SecondaryClOrdID);
  61. FIELD_SET(*this, FIX::ClOrdLinkID);
  62. FIELD_SET(*this, FIX::NoPartyIDs);
  63. class NoPartyIDs: public FIX::Group
  64. {
  65. public:
  66. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  67. FIELD_SET(*this, FIX::PartyID);
  68. FIELD_SET(*this, FIX::PartyIDSource);
  69. FIELD_SET(*this, FIX::PartyRole);
  70. FIELD_SET(*this, FIX::NoPartySubIDs);
  71. class NoPartySubIDs: public FIX::Group
  72. {
  73. public:
  74. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  75. FIELD_SET(*this, FIX::PartySubID);
  76. FIELD_SET(*this, FIX::PartySubIDType);
  77. };
  78. };
  79. FIELD_SET(*this, FIX::TradeOriginationDate);
  80. FIELD_SET(*this, FIX::TradeDate);
  81. FIELD_SET(*this, FIX::Account);
  82. FIELD_SET(*this, FIX::AcctIDSource);
  83. FIELD_SET(*this, FIX::AccountType);
  84. FIELD_SET(*this, FIX::DayBookingInst);
  85. FIELD_SET(*this, FIX::BookingUnit);
  86. FIELD_SET(*this, FIX::PreallocMethod);
  87. FIELD_SET(*this, FIX::AllocID);
  88. FIELD_SET(*this, FIX::NoAllocs);
  89. class NoAllocs: public FIX::Group
  90. {
  91. public:
  92. NoAllocs() : FIX::Group(78,79,FIX::message_order(79,661,736,467,539,80,0)) {}
  93. FIELD_SET(*this, FIX::AllocAccount);
  94. FIELD_SET(*this, FIX::AllocAcctIDSource);
  95. FIELD_SET(*this, FIX::AllocSettlCurrency);
  96. FIELD_SET(*this, FIX::IndividualAllocID);
  97. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  98. class NoNestedPartyIDs: public FIX::Group
  99. {
  100. public:
  101. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  102. FIELD_SET(*this, FIX::NestedPartyID);
  103. FIELD_SET(*this, FIX::NestedPartyIDSource);
  104. FIELD_SET(*this, FIX::NestedPartyRole);
  105. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  106. class NoNestedPartySubIDs: public FIX::Group
  107. {
  108. public:
  109. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  110. FIELD_SET(*this, FIX::NestedPartySubID);
  111. FIELD_SET(*this, FIX::NestedPartySubIDType);
  112. };
  113. };
  114. FIELD_SET(*this, FIX::AllocQty);
  115. };
  116. FIELD_SET(*this, FIX::QtyType);
  117. FIELD_SET(*this, FIX::OrderQty);
  118. FIELD_SET(*this, FIX::CashOrderQty);
  119. FIELD_SET(*this, FIX::OrderPercent);
  120. FIELD_SET(*this, FIX::RoundingDirection);
  121. FIELD_SET(*this, FIX::RoundingModulus);
  122. FIELD_SET(*this, FIX::Commission);
  123. FIELD_SET(*this, FIX::CommType);
  124. FIELD_SET(*this, FIX::CommCurrency);
  125. FIELD_SET(*this, FIX::FundRenewWaiv);
  126. FIELD_SET(*this, FIX::OrderCapacity);
  127. FIELD_SET(*this, FIX::OrderRestrictions);
  128. FIELD_SET(*this, FIX::PreTradeAnonymity);
  129. FIELD_SET(*this, FIX::CustOrderCapacity);
  130. FIELD_SET(*this, FIX::ForexReq);
  131. FIELD_SET(*this, FIX::SettlCurrency);
  132. FIELD_SET(*this, FIX::BookingType);
  133. FIELD_SET(*this, FIX::Text);
  134. FIELD_SET(*this, FIX::EncodedTextLen);
  135. FIELD_SET(*this, FIX::EncodedText);
  136. FIELD_SET(*this, FIX::PositionEffect);
  137. FIELD_SET(*this, FIX::CoveredOrUncovered);
  138. FIELD_SET(*this, FIX::CashMargin);
  139. FIELD_SET(*this, FIX::ClearingFeeIndicator);
  140. FIELD_SET(*this, FIX::SolicitedFlag);
  141. FIELD_SET(*this, FIX::SideComplianceID);
  142. FIELD_SET(*this, FIX::SideTimeInForce);
  143. };
  144. FIELD_SET(*this, FIX::Symbol);
  145. FIELD_SET(*this, FIX::SymbolSfx);
  146. FIELD_SET(*this, FIX::SecurityID);
  147. FIELD_SET(*this, FIX::SecurityIDSource);
  148. FIELD_SET(*this, FIX::Product);
  149. FIELD_SET(*this, FIX::CFICode);
  150. FIELD_SET(*this, FIX::SecurityType);
  151. FIELD_SET(*this, FIX::SecuritySubType);
  152. FIELD_SET(*this, FIX::MaturityMonthYear);
  153. FIELD_SET(*this, FIX::MaturityDate);
  154. FIELD_SET(*this, FIX::MaturityTime);
  155. FIELD_SET(*this, FIX::PutOrCall);
  156. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  157. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  158. FIELD_SET(*this, FIX::SecurityStatus);
  159. FIELD_SET(*this, FIX::CouponPaymentDate);
  160. FIELD_SET(*this, FIX::IssueDate);
  161. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  162. FIELD_SET(*this, FIX::RepurchaseTerm);
  163. FIELD_SET(*this, FIX::RepurchaseRate);
  164. FIELD_SET(*this, FIX::Factor);
  165. FIELD_SET(*this, FIX::CreditRating);
  166. FIELD_SET(*this, FIX::InstrRegistry);
  167. FIELD_SET(*this, FIX::CountryOfIssue);
  168. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  169. FIELD_SET(*this, FIX::LocaleOfIssue);
  170. FIELD_SET(*this, FIX::RedemptionDate);
  171. FIELD_SET(*this, FIX::StrikePrice);
  172. FIELD_SET(*this, FIX::StrikeCurrency);
  173. FIELD_SET(*this, FIX::StrikeMultiplier);
  174. FIELD_SET(*this, FIX::StrikeValue);
  175. FIELD_SET(*this, FIX::OptAttribute);
  176. FIELD_SET(*this, FIX::ContractMultiplier);
  177. FIELD_SET(*this, FIX::MinPriceIncrement);
  178. FIELD_SET(*this, FIX::UnitOfMeasure);
  179. FIELD_SET(*this, FIX::TimeUnit);
  180. FIELD_SET(*this, FIX::CouponRate);
  181. FIELD_SET(*this, FIX::SecurityExchange);
  182. FIELD_SET(*this, FIX::PositionLimit);
  183. FIELD_SET(*this, FIX::NTPositionLimit);
  184. FIELD_SET(*this, FIX::Issuer);
  185. FIELD_SET(*this, FIX::EncodedIssuerLen);
  186. FIELD_SET(*this, FIX::EncodedIssuer);
  187. FIELD_SET(*this, FIX::SecurityDesc);
  188. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  189. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  190. FIELD_SET(*this, FIX::Pool);
  191. FIELD_SET(*this, FIX::ContractSettlMonth);
  192. FIELD_SET(*this, FIX::CPProgram);
  193. FIELD_SET(*this, FIX::CPRegType);
  194. FIELD_SET(*this, FIX::DatedDate);
  195. FIELD_SET(*this, FIX::InterestAccrualDate);
  196. FIELD_SET(*this, FIX::NoUnderlyings);
  197. class NoUnderlyings: public FIX::Group
  198. {
  199. public:
  200. 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)) {}
  201. FIELD_SET(*this, FIX::UnderlyingSymbol);
  202. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  203. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  204. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  205. FIELD_SET(*this, FIX::UnderlyingProduct);
  206. FIELD_SET(*this, FIX::UnderlyingCFICode);
  207. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  208. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  209. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  210. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  211. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  212. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  213. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  214. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  215. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  216. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  217. FIELD_SET(*this, FIX::UnderlyingFactor);
  218. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  219. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  220. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  221. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  222. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  223. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  224. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  225. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  226. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  227. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  228. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasure);
  229. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  230. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  231. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  232. FIELD_SET(*this, FIX::UnderlyingIssuer);
  233. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  234. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  235. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  236. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  237. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  238. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  239. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  240. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  241. FIELD_SET(*this, FIX::UnderlyingCurrency);
  242. FIELD_SET(*this, FIX::UnderlyingQty);
  243. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  244. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  245. FIELD_SET(*this, FIX::UnderlyingCashType);
  246. FIELD_SET(*this, FIX::UnderlyingPx);
  247. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  248. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  249. FIELD_SET(*this, FIX::UnderlyingStartValue);
  250. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  251. FIELD_SET(*this, FIX::UnderlyingEndValue);
  252. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  253. FIELD_SET(*this, FIX::UnderlyingFXRate);
  254. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  255. FIELD_SET(*this, FIX::UnderlyingCapValue);
  256. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  257. };
  258. FIELD_SET(*this, FIX::NoLegs);
  259. class NoLegs: public FIX::Group
  260. {
  261. public:
  262. 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,0)) {}
  263. FIELD_SET(*this, FIX::LegSymbol);
  264. FIELD_SET(*this, FIX::LegSymbolSfx);
  265. FIELD_SET(*this, FIX::LegSecurityID);
  266. FIELD_SET(*this, FIX::LegSecurityIDSource);
  267. FIELD_SET(*this, FIX::LegProduct);
  268. FIELD_SET(*this, FIX::LegCFICode);
  269. FIELD_SET(*this, FIX::LegSecurityType);
  270. FIELD_SET(*this, FIX::LegSecuritySubType);
  271. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  272. FIELD_SET(*this, FIX::LegMaturityDate);
  273. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  274. FIELD_SET(*this, FIX::LegIssueDate);
  275. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  276. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  277. FIELD_SET(*this, FIX::LegRepurchaseRate);
  278. FIELD_SET(*this, FIX::LegFactor);
  279. FIELD_SET(*this, FIX::LegCreditRating);
  280. FIELD_SET(*this, FIX::LegInstrRegistry);
  281. FIELD_SET(*this, FIX::LegCountryOfIssue);
  282. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  283. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  284. FIELD_SET(*this, FIX::LegRedemptionDate);
  285. FIELD_SET(*this, FIX::LegStrikePrice);
  286. FIELD_SET(*this, FIX::LegStrikeCurrency);
  287. FIELD_SET(*this, FIX::LegOptAttribute);
  288. FIELD_SET(*this, FIX::LegContractMultiplier);
  289. FIELD_SET(*this, FIX::LegUnitOfMeasure);
  290. FIELD_SET(*this, FIX::LegTimeUnit);
  291. FIELD_SET(*this, FIX::LegCouponRate);
  292. FIELD_SET(*this, FIX::LegSecurityExchange);
  293. FIELD_SET(*this, FIX::LegIssuer);
  294. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  295. FIELD_SET(*this, FIX::EncodedLegIssuer);
  296. FIELD_SET(*this, FIX::LegSecurityDesc);
  297. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  298. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  299. FIELD_SET(*this, FIX::LegRatioQty);
  300. FIELD_SET(*this, FIX::LegSide);
  301. FIELD_SET(*this, FIX::LegCurrency);
  302. FIELD_SET(*this, FIX::LegPool);
  303. FIELD_SET(*this, FIX::LegDatedDate);
  304. FIELD_SET(*this, FIX::LegContractSettlMonth);
  305. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  306. FIELD_SET(*this, FIX::LegOptionRatio);
  307. };
  308. FIELD_SET(*this, FIX::SettlType);
  309. FIELD_SET(*this, FIX::SettlDate);
  310. FIELD_SET(*this, FIX::HandlInst);
  311. FIELD_SET(*this, FIX::ExecInst);
  312. FIELD_SET(*this, FIX::MinQty);
  313. FIELD_SET(*this, FIX::MatchIncrement);
  314. FIELD_SET(*this, FIX::MaxPriceLevels);
  315. FIELD_SET(*this, FIX::DisplayQty);
  316. FIELD_SET(*this, FIX::SecondaryDisplayQty);
  317. FIELD_SET(*this, FIX::DisplayWhen);
  318. FIELD_SET(*this, FIX::DisplayMethod);
  319. FIELD_SET(*this, FIX::DisplayLowQty);
  320. FIELD_SET(*this, FIX::DisplayHighQty);
  321. FIELD_SET(*this, FIX::DisplayMinIncr);
  322. FIELD_SET(*this, FIX::RefreshQty);
  323. FIELD_SET(*this, FIX::MaxFloor);
  324. FIELD_SET(*this, FIX::ExDestination);
  325. FIELD_SET(*this, FIX::ExDestinationIDSource);
  326. FIELD_SET(*this, FIX::NoTradingSessions);
  327. class NoTradingSessions: public FIX::Group
  328. {
  329. public:
  330. NoTradingSessions() : FIX::Group(386,336,FIX::message_order(336,625,0)) {}
  331. FIELD_SET(*this, FIX::TradingSessionID);
  332. FIELD_SET(*this, FIX::TradingSessionSubID);
  333. };
  334. FIELD_SET(*this, FIX::ProcessCode);
  335. FIELD_SET(*this, FIX::PrevClosePx);
  336. FIELD_SET(*this, FIX::LocateReqd);
  337. FIELD_SET(*this, FIX::TransactTime);
  338. FIELD_SET(*this, FIX::TransBkdTime);
  339. FIELD_SET(*this, FIX::NoStipulations);
  340. class NoStipulations: public FIX::Group
  341. {
  342. public:
  343. NoStipulations() : FIX::Group(232,233,FIX::message_order(233,234,0)) {}
  344. FIELD_SET(*this, FIX::StipulationType);
  345. FIELD_SET(*this, FIX::StipulationValue);
  346. };
  347. FIELD_SET(*this, FIX::OrdType);
  348. FIELD_SET(*this, FIX::PriceType);
  349. FIELD_SET(*this, FIX::Price);
  350. FIELD_SET(*this, FIX::PriceProtectionScope);
  351. FIELD_SET(*this, FIX::StopPx);
  352. FIELD_SET(*this, FIX::TriggerType);
  353. FIELD_SET(*this, FIX::TriggerAction);
  354. FIELD_SET(*this, FIX::TriggerPrice);
  355. FIELD_SET(*this, FIX::TriggerSymbol);
  356. FIELD_SET(*this, FIX::TriggerSecurityID);
  357. FIELD_SET(*this, FIX::TriggerSecurityIDSource);
  358. FIELD_SET(*this, FIX::TriggerSecurityDesc);
  359. FIELD_SET(*this, FIX::TriggerPriceType);
  360. FIELD_SET(*this, FIX::TriggerPriceTypeScope);
  361. FIELD_SET(*this, FIX::TriggerPriceDirection);
  362. FIELD_SET(*this, FIX::TriggerNewPrice);
  363. FIELD_SET(*this, FIX::TriggerOrderType);
  364. FIELD_SET(*this, FIX::TriggerNewQty);
  365. FIELD_SET(*this, FIX::TriggerTradingSessionID);
  366. FIELD_SET(*this, FIX::TriggerTradingSessionSubID);
  367. FIELD_SET(*this, FIX::Spread);
  368. FIELD_SET(*this, FIX::BenchmarkCurveCurrency);
  369. FIELD_SET(*this, FIX::BenchmarkCurveName);
  370. FIELD_SET(*this, FIX::BenchmarkCurvePoint);
  371. FIELD_SET(*this, FIX::BenchmarkPrice);
  372. FIELD_SET(*this, FIX::BenchmarkPriceType);
  373. FIELD_SET(*this, FIX::BenchmarkSecurityID);
  374. FIELD_SET(*this, FIX::BenchmarkSecurityIDSource);
  375. FIELD_SET(*this, FIX::YieldType);
  376. FIELD_SET(*this, FIX::Yield);
  377. FIELD_SET(*this, FIX::YieldCalcDate);
  378. FIELD_SET(*this, FIX::YieldRedemptionDate);
  379. FIELD_SET(*this, FIX::YieldRedemptionPrice);
  380. FIELD_SET(*this, FIX::YieldRedemptionPriceType);
  381. FIELD_SET(*this, FIX::Currency);
  382. FIELD_SET(*this, FIX::ComplianceID);
  383. FIELD_SET(*this, FIX::IOIID);
  384. FIELD_SET(*this, FIX::QuoteID);
  385. FIELD_SET(*this, FIX::TimeInForce);
  386. FIELD_SET(*this, FIX::EffectiveTime);
  387. FIELD_SET(*this, FIX::ExpireDate);
  388. FIELD_SET(*this, FIX::ExpireTime);
  389. FIELD_SET(*this, FIX::GTBookingInst);
  390. FIELD_SET(*this, FIX::MaxShow);
  391. FIELD_SET(*this, FIX::PegOffsetValue);
  392. FIELD_SET(*this, FIX::PegPriceType);
  393. FIELD_SET(*this, FIX::PegMoveType);
  394. FIELD_SET(*this, FIX::PegOffsetType);
  395. FIELD_SET(*this, FIX::PegLimitType);
  396. FIELD_SET(*this, FIX::PegRoundDirection);
  397. FIELD_SET(*this, FIX::PegScope);
  398. FIELD_SET(*this, FIX::PegSecurityIDSource);
  399. FIELD_SET(*this, FIX::PegSecurityID);
  400. FIELD_SET(*this, FIX::PegSymbol);
  401. FIELD_SET(*this, FIX::PegSecurityDesc);
  402. FIELD_SET(*this, FIX::DiscretionInst);
  403. FIELD_SET(*this, FIX::DiscretionOffsetValue);
  404. FIELD_SET(*this, FIX::DiscretionMoveType);
  405. FIELD_SET(*this, FIX::DiscretionOffsetType);
  406. FIELD_SET(*this, FIX::DiscretionLimitType);
  407. FIELD_SET(*this, FIX::DiscretionRoundDirection);
  408. FIELD_SET(*this, FIX::DiscretionScope);
  409. FIELD_SET(*this, FIX::TargetStrategy);
  410. FIELD_SET(*this, FIX::NoStrategyParameters);
  411. class NoStrategyParameters: public FIX::Group
  412. {
  413. public:
  414. NoStrategyParameters() : FIX::Group(957,958,FIX::message_order(958,959,960,0)) {}
  415. FIELD_SET(*this, FIX::StrategyParameterName);
  416. FIELD_SET(*this, FIX::StrategyParameterType);
  417. FIELD_SET(*this, FIX::StrategyParameterValue);
  418. };
  419. FIELD_SET(*this, FIX::TargetStrategyParameters);
  420. FIELD_SET(*this, FIX::ParticipationRate);
  421. FIELD_SET(*this, FIX::CancellationRights);
  422. FIELD_SET(*this, FIX::MoneyLaunderingStatus);
  423. FIELD_SET(*this, FIX::RegistID);
  424. FIELD_SET(*this, FIX::Designation);
  425. };
  426. }
  427. #endif