NewOrderMultileg.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. #ifndef FIX44_NEWORDERMULTILEG_H
  2. #define FIX44_NEWORDERMULTILEG_H
  3. #include "Message.h"
  4. namespace FIX44
  5. {
  6. class NewOrderMultileg : public Message
  7. {
  8. public:
  9. NewOrderMultileg() : Message(MsgType()) {}
  10. NewOrderMultileg(const FIX::Message& m) : Message(m) {}
  11. NewOrderMultileg(const Message& m) : Message(m) {}
  12. NewOrderMultileg(const NewOrderMultileg& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("AB"); }
  14. NewOrderMultileg(
  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::ClOrdID);
  27. FIELD_SET(*this, FIX::SecondaryClOrdID);
  28. FIELD_SET(*this, FIX::ClOrdLinkID);
  29. FIELD_SET(*this, FIX::NoPartyIDs);
  30. class NoPartyIDs: public FIX::Group
  31. {
  32. public:
  33. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  34. FIELD_SET(*this, FIX::PartyID);
  35. FIELD_SET(*this, FIX::PartyIDSource);
  36. FIELD_SET(*this, FIX::PartyRole);
  37. FIELD_SET(*this, FIX::NoPartySubIDs);
  38. class NoPartySubIDs: public FIX::Group
  39. {
  40. public:
  41. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  42. FIELD_SET(*this, FIX::PartySubID);
  43. FIELD_SET(*this, FIX::PartySubIDType);
  44. };
  45. };
  46. FIELD_SET(*this, FIX::TradeOriginationDate);
  47. FIELD_SET(*this, FIX::TradeDate);
  48. FIELD_SET(*this, FIX::Account);
  49. FIELD_SET(*this, FIX::AcctIDSource);
  50. FIELD_SET(*this, FIX::AccountType);
  51. FIELD_SET(*this, FIX::DayBookingInst);
  52. FIELD_SET(*this, FIX::BookingUnit);
  53. FIELD_SET(*this, FIX::PreallocMethod);
  54. FIELD_SET(*this, FIX::AllocID);
  55. FIELD_SET(*this, FIX::NoAllocs);
  56. class NoAllocs: public FIX::Group
  57. {
  58. public:
  59. NoAllocs() : FIX::Group(78,79,FIX::message_order(79,661,736,467,948,80,0)) {}
  60. FIELD_SET(*this, FIX::AllocAccount);
  61. FIELD_SET(*this, FIX::AllocAcctIDSource);
  62. FIELD_SET(*this, FIX::AllocSettlCurrency);
  63. FIELD_SET(*this, FIX::IndividualAllocID);
  64. FIELD_SET(*this, FIX::NoNested3PartyIDs);
  65. class NoNested3PartyIDs: public FIX::Group
  66. {
  67. public:
  68. NoNested3PartyIDs() : FIX::Group(948,949,FIX::message_order(949,950,951,952,0)) {}
  69. FIELD_SET(*this, FIX::Nested3PartyID);
  70. FIELD_SET(*this, FIX::Nested3PartyIDSource);
  71. FIELD_SET(*this, FIX::Nested3PartyRole);
  72. FIELD_SET(*this, FIX::NoNested3PartySubIDs);
  73. class NoNested3PartySubIDs: public FIX::Group
  74. {
  75. public:
  76. NoNested3PartySubIDs() : FIX::Group(952,953,FIX::message_order(953,954,0)) {}
  77. FIELD_SET(*this, FIX::Nested3PartySubID);
  78. FIELD_SET(*this, FIX::Nested3PartySubIDType);
  79. };
  80. };
  81. FIELD_SET(*this, FIX::AllocQty);
  82. };
  83. FIELD_SET(*this, FIX::SettlType);
  84. FIELD_SET(*this, FIX::SettlDate);
  85. FIELD_SET(*this, FIX::CashMargin);
  86. FIELD_SET(*this, FIX::ClearingFeeIndicator);
  87. FIELD_SET(*this, FIX::HandlInst);
  88. FIELD_SET(*this, FIX::ExecInst);
  89. FIELD_SET(*this, FIX::MinQty);
  90. FIELD_SET(*this, FIX::MaxFloor);
  91. FIELD_SET(*this, FIX::ExDestination);
  92. FIELD_SET(*this, FIX::NoTradingSessions);
  93. class NoTradingSessions: public FIX::Group
  94. {
  95. public:
  96. NoTradingSessions() : FIX::Group(386,336,FIX::message_order(336,625,0)) {}
  97. FIELD_SET(*this, FIX::TradingSessionID);
  98. FIELD_SET(*this, FIX::TradingSessionSubID);
  99. };
  100. FIELD_SET(*this, FIX::ProcessCode);
  101. FIELD_SET(*this, FIX::Side);
  102. FIELD_SET(*this, FIX::Symbol);
  103. FIELD_SET(*this, FIX::SymbolSfx);
  104. FIELD_SET(*this, FIX::SecurityID);
  105. FIELD_SET(*this, FIX::SecurityIDSource);
  106. FIELD_SET(*this, FIX::Product);
  107. FIELD_SET(*this, FIX::CFICode);
  108. FIELD_SET(*this, FIX::SecurityType);
  109. FIELD_SET(*this, FIX::SecuritySubType);
  110. FIELD_SET(*this, FIX::MaturityMonthYear);
  111. FIELD_SET(*this, FIX::MaturityDate);
  112. FIELD_SET(*this, FIX::PutOrCall);
  113. FIELD_SET(*this, FIX::CouponPaymentDate);
  114. FIELD_SET(*this, FIX::IssueDate);
  115. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  116. FIELD_SET(*this, FIX::RepurchaseTerm);
  117. FIELD_SET(*this, FIX::RepurchaseRate);
  118. FIELD_SET(*this, FIX::Factor);
  119. FIELD_SET(*this, FIX::CreditRating);
  120. FIELD_SET(*this, FIX::InstrRegistry);
  121. FIELD_SET(*this, FIX::CountryOfIssue);
  122. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  123. FIELD_SET(*this, FIX::LocaleOfIssue);
  124. FIELD_SET(*this, FIX::RedemptionDate);
  125. FIELD_SET(*this, FIX::StrikePrice);
  126. FIELD_SET(*this, FIX::StrikeCurrency);
  127. FIELD_SET(*this, FIX::OptAttribute);
  128. FIELD_SET(*this, FIX::ContractMultiplier);
  129. FIELD_SET(*this, FIX::CouponRate);
  130. FIELD_SET(*this, FIX::SecurityExchange);
  131. FIELD_SET(*this, FIX::Issuer);
  132. FIELD_SET(*this, FIX::EncodedIssuerLen);
  133. FIELD_SET(*this, FIX::EncodedIssuer);
  134. FIELD_SET(*this, FIX::SecurityDesc);
  135. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  136. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  137. FIELD_SET(*this, FIX::Pool);
  138. FIELD_SET(*this, FIX::ContractSettlMonth);
  139. FIELD_SET(*this, FIX::CPProgram);
  140. FIELD_SET(*this, FIX::CPRegType);
  141. FIELD_SET(*this, FIX::DatedDate);
  142. FIELD_SET(*this, FIX::InterestAccrualDate);
  143. FIELD_SET(*this, FIX::NoUnderlyings);
  144. class NoUnderlyings: public FIX::Group
  145. {
  146. public:
  147. 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,435,308,306,362,363,307,364,365,877,878,318,879,810,882,883,884,885,886,0)) {}
  148. FIELD_SET(*this, FIX::UnderlyingSymbol);
  149. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  150. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  151. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  152. FIELD_SET(*this, FIX::UnderlyingProduct);
  153. FIELD_SET(*this, FIX::UnderlyingCFICode);
  154. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  155. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  156. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  157. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  158. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  159. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  160. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  161. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  162. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  163. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  164. FIELD_SET(*this, FIX::UnderlyingFactor);
  165. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  166. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  167. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  168. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  169. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  170. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  171. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  172. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  173. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  174. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  175. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  176. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  177. FIELD_SET(*this, FIX::UnderlyingIssuer);
  178. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  179. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  180. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  181. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  182. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  183. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  184. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  185. FIELD_SET(*this, FIX::UnderlyingCurrency);
  186. FIELD_SET(*this, FIX::UnderlyingQty);
  187. FIELD_SET(*this, FIX::UnderlyingPx);
  188. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  189. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  190. FIELD_SET(*this, FIX::UnderlyingStartValue);
  191. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  192. FIELD_SET(*this, FIX::UnderlyingEndValue);
  193. };
  194. FIELD_SET(*this, FIX::PrevClosePx);
  195. FIELD_SET(*this, FIX::NoLegs);
  196. class NoLegs: public FIX::Group
  197. {
  198. public:
  199. 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,615,616,617,618,619,620,621,622,623,624,556,740,739,955,956,687,690,683,670,564,565,539,654,566,587,588,0)) {}
  200. FIELD_SET(*this, FIX::LegSymbol);
  201. FIELD_SET(*this, FIX::LegSymbolSfx);
  202. FIELD_SET(*this, FIX::LegSecurityID);
  203. FIELD_SET(*this, FIX::LegSecurityIDSource);
  204. FIELD_SET(*this, FIX::LegProduct);
  205. FIELD_SET(*this, FIX::LegCFICode);
  206. FIELD_SET(*this, FIX::LegSecurityType);
  207. FIELD_SET(*this, FIX::LegSecuritySubType);
  208. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  209. FIELD_SET(*this, FIX::LegMaturityDate);
  210. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  211. FIELD_SET(*this, FIX::LegIssueDate);
  212. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  213. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  214. FIELD_SET(*this, FIX::LegRepurchaseRate);
  215. FIELD_SET(*this, FIX::LegFactor);
  216. FIELD_SET(*this, FIX::LegCreditRating);
  217. FIELD_SET(*this, FIX::LegInstrRegistry);
  218. FIELD_SET(*this, FIX::LegCountryOfIssue);
  219. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  220. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  221. FIELD_SET(*this, FIX::LegRedemptionDate);
  222. FIELD_SET(*this, FIX::LegStrikePrice);
  223. FIELD_SET(*this, FIX::LegStrikeCurrency);
  224. FIELD_SET(*this, FIX::LegOptAttribute);
  225. FIELD_SET(*this, FIX::LegContractMultiplier);
  226. FIELD_SET(*this, FIX::LegCouponRate);
  227. FIELD_SET(*this, FIX::LegSecurityExchange);
  228. FIELD_SET(*this, FIX::LegIssuer);
  229. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  230. FIELD_SET(*this, FIX::EncodedLegIssuer);
  231. FIELD_SET(*this, FIX::LegSecurityDesc);
  232. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  233. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  234. FIELD_SET(*this, FIX::LegRatioQty);
  235. FIELD_SET(*this, FIX::LegSide);
  236. FIELD_SET(*this, FIX::LegCurrency);
  237. FIELD_SET(*this, FIX::LegPool);
  238. FIELD_SET(*this, FIX::LegDatedDate);
  239. FIELD_SET(*this, FIX::LegContractSettlMonth);
  240. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  241. FIELD_SET(*this, FIX::LegQty);
  242. FIELD_SET(*this, FIX::LegSwapType);
  243. FIELD_SET(*this, FIX::NoLegStipulations);
  244. class NoLegStipulations: public FIX::Group
  245. {
  246. public:
  247. NoLegStipulations() : FIX::Group(683,688,FIX::message_order(688,689,0)) {}
  248. FIELD_SET(*this, FIX::LegStipulationType);
  249. FIELD_SET(*this, FIX::LegStipulationValue);
  250. };
  251. FIELD_SET(*this, FIX::NoLegAllocs);
  252. class NoLegAllocs: public FIX::Group
  253. {
  254. public:
  255. NoLegAllocs() : FIX::Group(670,671,FIX::message_order(671,672,756,673,674,675,0)) {}
  256. FIELD_SET(*this, FIX::LegAllocAccount);
  257. FIELD_SET(*this, FIX::LegIndividualAllocID);
  258. FIELD_SET(*this, FIX::NoNested2PartyIDs);
  259. class NoNested2PartyIDs: public FIX::Group
  260. {
  261. public:
  262. NoNested2PartyIDs() : FIX::Group(756,757,FIX::message_order(757,758,759,806,0)) {}
  263. FIELD_SET(*this, FIX::Nested2PartyID);
  264. FIELD_SET(*this, FIX::Nested2PartyIDSource);
  265. FIELD_SET(*this, FIX::Nested2PartyRole);
  266. FIELD_SET(*this, FIX::NoNested2PartySubIDs);
  267. class NoNested2PartySubIDs: public FIX::Group
  268. {
  269. public:
  270. NoNested2PartySubIDs() : FIX::Group(806,760,FIX::message_order(760,807,0)) {}
  271. FIELD_SET(*this, FIX::Nested2PartySubID);
  272. FIELD_SET(*this, FIX::Nested2PartySubIDType);
  273. };
  274. };
  275. FIELD_SET(*this, FIX::LegAllocQty);
  276. FIELD_SET(*this, FIX::LegAllocAcctIDSource);
  277. FIELD_SET(*this, FIX::LegSettlCurrency);
  278. };
  279. FIELD_SET(*this, FIX::LegPositionEffect);
  280. FIELD_SET(*this, FIX::LegCoveredOrUncovered);
  281. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  282. class NoNestedPartyIDs: public FIX::Group
  283. {
  284. public:
  285. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  286. FIELD_SET(*this, FIX::NestedPartyID);
  287. FIELD_SET(*this, FIX::NestedPartyIDSource);
  288. FIELD_SET(*this, FIX::NestedPartyRole);
  289. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  290. class NoNestedPartySubIDs: public FIX::Group
  291. {
  292. public:
  293. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  294. FIELD_SET(*this, FIX::NestedPartySubID);
  295. FIELD_SET(*this, FIX::NestedPartySubIDType);
  296. };
  297. };
  298. FIELD_SET(*this, FIX::LegRefID);
  299. FIELD_SET(*this, FIX::LegPrice);
  300. FIELD_SET(*this, FIX::LegSettlType);
  301. FIELD_SET(*this, FIX::LegSettlDate);
  302. };
  303. FIELD_SET(*this, FIX::LocateReqd);
  304. FIELD_SET(*this, FIX::TransactTime);
  305. FIELD_SET(*this, FIX::QtyType);
  306. FIELD_SET(*this, FIX::OrderQty);
  307. FIELD_SET(*this, FIX::CashOrderQty);
  308. FIELD_SET(*this, FIX::OrderPercent);
  309. FIELD_SET(*this, FIX::RoundingDirection);
  310. FIELD_SET(*this, FIX::RoundingModulus);
  311. FIELD_SET(*this, FIX::OrdType);
  312. FIELD_SET(*this, FIX::PriceType);
  313. FIELD_SET(*this, FIX::Price);
  314. FIELD_SET(*this, FIX::StopPx);
  315. FIELD_SET(*this, FIX::Currency);
  316. FIELD_SET(*this, FIX::ComplianceID);
  317. FIELD_SET(*this, FIX::SolicitedFlag);
  318. FIELD_SET(*this, FIX::IOIID);
  319. FIELD_SET(*this, FIX::QuoteID);
  320. FIELD_SET(*this, FIX::TimeInForce);
  321. FIELD_SET(*this, FIX::EffectiveTime);
  322. FIELD_SET(*this, FIX::ExpireDate);
  323. FIELD_SET(*this, FIX::ExpireTime);
  324. FIELD_SET(*this, FIX::GTBookingInst);
  325. FIELD_SET(*this, FIX::Commission);
  326. FIELD_SET(*this, FIX::CommType);
  327. FIELD_SET(*this, FIX::CommCurrency);
  328. FIELD_SET(*this, FIX::FundRenewWaiv);
  329. FIELD_SET(*this, FIX::OrderCapacity);
  330. FIELD_SET(*this, FIX::OrderRestrictions);
  331. FIELD_SET(*this, FIX::CustOrderCapacity);
  332. FIELD_SET(*this, FIX::ForexReq);
  333. FIELD_SET(*this, FIX::SettlCurrency);
  334. FIELD_SET(*this, FIX::BookingType);
  335. FIELD_SET(*this, FIX::Text);
  336. FIELD_SET(*this, FIX::EncodedTextLen);
  337. FIELD_SET(*this, FIX::EncodedText);
  338. FIELD_SET(*this, FIX::PositionEffect);
  339. FIELD_SET(*this, FIX::CoveredOrUncovered);
  340. FIELD_SET(*this, FIX::MaxShow);
  341. FIELD_SET(*this, FIX::PegOffsetValue);
  342. FIELD_SET(*this, FIX::PegMoveType);
  343. FIELD_SET(*this, FIX::PegOffsetType);
  344. FIELD_SET(*this, FIX::PegLimitType);
  345. FIELD_SET(*this, FIX::PegRoundDirection);
  346. FIELD_SET(*this, FIX::PegScope);
  347. FIELD_SET(*this, FIX::DiscretionInst);
  348. FIELD_SET(*this, FIX::DiscretionOffsetValue);
  349. FIELD_SET(*this, FIX::DiscretionMoveType);
  350. FIELD_SET(*this, FIX::DiscretionOffsetType);
  351. FIELD_SET(*this, FIX::DiscretionLimitType);
  352. FIELD_SET(*this, FIX::DiscretionRoundDirection);
  353. FIELD_SET(*this, FIX::DiscretionScope);
  354. FIELD_SET(*this, FIX::TargetStrategy);
  355. FIELD_SET(*this, FIX::TargetStrategyParameters);
  356. FIELD_SET(*this, FIX::ParticipationRate);
  357. FIELD_SET(*this, FIX::CancellationRights);
  358. FIELD_SET(*this, FIX::MoneyLaunderingStatus);
  359. FIELD_SET(*this, FIX::RegistID);
  360. FIELD_SET(*this, FIX::Designation);
  361. FIELD_SET(*this, FIX::MultiLegRptTypeReq);
  362. };
  363. }
  364. #endif