Quote.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. #ifndef FIX50SP2_QUOTE_H
  2. #define FIX50SP2_QUOTE_H
  3. #include "Message.h"
  4. namespace FIX50SP2
  5. {
  6. class Quote : public Message
  7. {
  8. public:
  9. Quote() : Message(MsgType()) {}
  10. Quote(const FIX::Message& m) : Message(m) {}
  11. Quote(const Message& m) : Message(m) {}
  12. Quote(const Quote& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("S"); }
  14. Quote(
  15. const FIX::QuoteID& aQuoteID )
  16. : Message(MsgType())
  17. {
  18. set(aQuoteID);
  19. }
  20. FIELD_SET(*this, FIX::QuoteReqID);
  21. FIELD_SET(*this, FIX::QuoteID);
  22. FIELD_SET(*this, FIX::QuoteMsgID);
  23. FIELD_SET(*this, FIX::QuoteRespID);
  24. FIELD_SET(*this, FIX::QuoteType);
  25. FIELD_SET(*this, FIX::PrivateQuote);
  26. FIELD_SET(*this, FIX::NoQuoteQualifiers);
  27. class NoQuoteQualifiers: public FIX::Group
  28. {
  29. public:
  30. NoQuoteQualifiers() : FIX::Group(735,695,FIX::message_order(695,0)) {}
  31. FIELD_SET(*this, FIX::QuoteQualifier);
  32. };
  33. FIELD_SET(*this, FIX::QuoteResponseLevel);
  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::TradingSessionID);
  52. FIELD_SET(*this, FIX::TradingSessionSubID);
  53. FIELD_SET(*this, FIX::Symbol);
  54. FIELD_SET(*this, FIX::SymbolSfx);
  55. FIELD_SET(*this, FIX::SecurityID);
  56. FIELD_SET(*this, FIX::SecurityIDSource);
  57. FIELD_SET(*this, FIX::Product);
  58. FIELD_SET(*this, FIX::ProductComplex);
  59. FIELD_SET(*this, FIX::SecurityGroup);
  60. FIELD_SET(*this, FIX::CFICode);
  61. FIELD_SET(*this, FIX::SecurityType);
  62. FIELD_SET(*this, FIX::SecuritySubType);
  63. FIELD_SET(*this, FIX::MaturityMonthYear);
  64. FIELD_SET(*this, FIX::MaturityDate);
  65. FIELD_SET(*this, FIX::MaturityTime);
  66. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  67. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  68. FIELD_SET(*this, FIX::SecurityStatus);
  69. FIELD_SET(*this, FIX::CouponPaymentDate);
  70. FIELD_SET(*this, FIX::IssueDate);
  71. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  72. FIELD_SET(*this, FIX::RepurchaseTerm);
  73. FIELD_SET(*this, FIX::RepurchaseRate);
  74. FIELD_SET(*this, FIX::Factor);
  75. FIELD_SET(*this, FIX::CreditRating);
  76. FIELD_SET(*this, FIX::InstrRegistry);
  77. FIELD_SET(*this, FIX::CountryOfIssue);
  78. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  79. FIELD_SET(*this, FIX::LocaleOfIssue);
  80. FIELD_SET(*this, FIX::RedemptionDate);
  81. FIELD_SET(*this, FIX::StrikePrice);
  82. FIELD_SET(*this, FIX::StrikeCurrency);
  83. FIELD_SET(*this, FIX::StrikeMultiplier);
  84. FIELD_SET(*this, FIX::StrikeValue);
  85. FIELD_SET(*this, FIX::OptAttribute);
  86. FIELD_SET(*this, FIX::ContractMultiplier);
  87. FIELD_SET(*this, FIX::MinPriceIncrement);
  88. FIELD_SET(*this, FIX::MinPriceIncrementAmount);
  89. FIELD_SET(*this, FIX::UnitOfMeasure);
  90. FIELD_SET(*this, FIX::UnitOfMeasureQty);
  91. FIELD_SET(*this, FIX::PriceUnitOfMeasure);
  92. FIELD_SET(*this, FIX::PriceUnitOfMeasureQty);
  93. FIELD_SET(*this, FIX::SettlMethod);
  94. FIELD_SET(*this, FIX::ExerciseStyle);
  95. FIELD_SET(*this, FIX::OptPayoutAmount);
  96. FIELD_SET(*this, FIX::PriceQuoteMethod);
  97. FIELD_SET(*this, FIX::ValuationMethod);
  98. FIELD_SET(*this, FIX::ListMethod);
  99. FIELD_SET(*this, FIX::CapPrice);
  100. FIELD_SET(*this, FIX::FloorPrice);
  101. FIELD_SET(*this, FIX::PutOrCall);
  102. FIELD_SET(*this, FIX::FlexibleIndicator);
  103. FIELD_SET(*this, FIX::FlexProductEligibilityIndicator);
  104. FIELD_SET(*this, FIX::TimeUnit);
  105. FIELD_SET(*this, FIX::CouponRate);
  106. FIELD_SET(*this, FIX::SecurityExchange);
  107. FIELD_SET(*this, FIX::PositionLimit);
  108. FIELD_SET(*this, FIX::NTPositionLimit);
  109. FIELD_SET(*this, FIX::Issuer);
  110. FIELD_SET(*this, FIX::EncodedIssuerLen);
  111. FIELD_SET(*this, FIX::EncodedIssuer);
  112. FIELD_SET(*this, FIX::SecurityDesc);
  113. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  114. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  115. FIELD_SET(*this, FIX::Pool);
  116. FIELD_SET(*this, FIX::ContractSettlMonth);
  117. FIELD_SET(*this, FIX::CPProgram);
  118. FIELD_SET(*this, FIX::CPRegType);
  119. FIELD_SET(*this, FIX::DatedDate);
  120. FIELD_SET(*this, FIX::InterestAccrualDate);
  121. FIELD_SET(*this, FIX::ContractMultiplierUnit);
  122. FIELD_SET(*this, FIX::FlowScheduleType);
  123. FIELD_SET(*this, FIX::RestructuringType);
  124. FIELD_SET(*this, FIX::Seniority);
  125. FIELD_SET(*this, FIX::NotionalPercentageOutstanding);
  126. FIELD_SET(*this, FIX::OriginalNotionalPercentageOutstanding);
  127. FIELD_SET(*this, FIX::AttachmentPoint);
  128. FIELD_SET(*this, FIX::DetachmentPoint);
  129. FIELD_SET(*this, FIX::StrikePriceDeterminationMethod);
  130. FIELD_SET(*this, FIX::StrikePriceBoundaryMethod);
  131. FIELD_SET(*this, FIX::StrikePriceBoundaryPrecision);
  132. FIELD_SET(*this, FIX::UnderlyingPriceDeterminationMethod);
  133. FIELD_SET(*this, FIX::OptPayoutType);
  134. FIELD_SET(*this, FIX::AgreementDesc);
  135. FIELD_SET(*this, FIX::AgreementID);
  136. FIELD_SET(*this, FIX::AgreementDate);
  137. FIELD_SET(*this, FIX::AgreementCurrency);
  138. FIELD_SET(*this, FIX::TerminationType);
  139. FIELD_SET(*this, FIX::StartDate);
  140. FIELD_SET(*this, FIX::EndDate);
  141. FIELD_SET(*this, FIX::DeliveryType);
  142. FIELD_SET(*this, FIX::MarginRatio);
  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,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)) {}
  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::UnderlyingMaturityTime);
  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::UnderlyingUnitOfMeasure);
  176. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasureQty);
  177. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasure);
  178. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasureQty);
  179. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  180. FIELD_SET(*this, FIX::UnderlyingExerciseStyle);
  181. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  182. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  183. FIELD_SET(*this, FIX::UnderlyingIssuer);
  184. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  185. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  186. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  187. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  188. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  189. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  190. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  191. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  192. FIELD_SET(*this, FIX::UnderlyingCurrency);
  193. FIELD_SET(*this, FIX::UnderlyingQty);
  194. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  195. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  196. FIELD_SET(*this, FIX::UnderlyingCashType);
  197. FIELD_SET(*this, FIX::UnderlyingPx);
  198. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  199. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  200. FIELD_SET(*this, FIX::UnderlyingStartValue);
  201. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  202. FIELD_SET(*this, FIX::UnderlyingEndValue);
  203. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  204. FIELD_SET(*this, FIX::UnderlyingFXRate);
  205. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  206. FIELD_SET(*this, FIX::UnderlyingCapValue);
  207. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  208. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  209. FIELD_SET(*this, FIX::UnderlyingContractMultiplierUnit);
  210. FIELD_SET(*this, FIX::UnderlyingFlowScheduleType);
  211. FIELD_SET(*this, FIX::UnderlyingRestructuringType);
  212. FIELD_SET(*this, FIX::UnderlyingSeniority);
  213. FIELD_SET(*this, FIX::UnderlyingNotionalPercentageOutstanding);
  214. FIELD_SET(*this, FIX::UnderlyingOriginalNotionalPercentageOutstanding);
  215. FIELD_SET(*this, FIX::UnderlyingAttachmentPoint);
  216. FIELD_SET(*this, FIX::UnderlyingDetachmentPoint);
  217. };
  218. FIELD_SET(*this, FIX::Side);
  219. FIELD_SET(*this, FIX::OrderQty);
  220. FIELD_SET(*this, FIX::CashOrderQty);
  221. FIELD_SET(*this, FIX::OrderPercent);
  222. FIELD_SET(*this, FIX::RoundingDirection);
  223. FIELD_SET(*this, FIX::RoundingModulus);
  224. FIELD_SET(*this, FIX::SettlType);
  225. FIELD_SET(*this, FIX::SettlDate);
  226. FIELD_SET(*this, FIX::SettlDate2);
  227. FIELD_SET(*this, FIX::OrderQty2);
  228. FIELD_SET(*this, FIX::Currency);
  229. FIELD_SET(*this, FIX::NoStipulations);
  230. class NoStipulations: public FIX::Group
  231. {
  232. public:
  233. NoStipulations() : FIX::Group(232,233,FIX::message_order(233,234,0)) {}
  234. FIELD_SET(*this, FIX::StipulationType);
  235. FIELD_SET(*this, FIX::StipulationValue);
  236. };
  237. FIELD_SET(*this, FIX::Account);
  238. FIELD_SET(*this, FIX::AcctIDSource);
  239. FIELD_SET(*this, FIX::AccountType);
  240. FIELD_SET(*this, FIX::NoLegs);
  241. class NoLegs: public FIX::Group
  242. {
  243. public:
  244. NoLegs() : FIX::Group(555,600,FIX::message_order(600,601,602,603,607,608,609,764,610,611,1212,248,249,250,251,252,253,257,599,596,597,598,254,612,942,613,614,999,1224,1421,1422,1001,1420,615,616,617,618,619,620,621,622,623,624,556,740,739,955,956,1358,1017,1436,1440,687,685,690,587,588,683,539,686,681,684,676,677,678,679,680,654,1067,1068,0)) {}
  245. FIELD_SET(*this, FIX::LegSymbol);
  246. FIELD_SET(*this, FIX::LegSymbolSfx);
  247. FIELD_SET(*this, FIX::LegSecurityID);
  248. FIELD_SET(*this, FIX::LegSecurityIDSource);
  249. FIELD_SET(*this, FIX::LegProduct);
  250. FIELD_SET(*this, FIX::LegCFICode);
  251. FIELD_SET(*this, FIX::LegSecurityType);
  252. FIELD_SET(*this, FIX::LegSecuritySubType);
  253. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  254. FIELD_SET(*this, FIX::LegMaturityDate);
  255. FIELD_SET(*this, FIX::LegMaturityTime);
  256. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  257. FIELD_SET(*this, FIX::LegIssueDate);
  258. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  259. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  260. FIELD_SET(*this, FIX::LegRepurchaseRate);
  261. FIELD_SET(*this, FIX::LegFactor);
  262. FIELD_SET(*this, FIX::LegCreditRating);
  263. FIELD_SET(*this, FIX::LegInstrRegistry);
  264. FIELD_SET(*this, FIX::LegCountryOfIssue);
  265. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  266. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  267. FIELD_SET(*this, FIX::LegRedemptionDate);
  268. FIELD_SET(*this, FIX::LegStrikePrice);
  269. FIELD_SET(*this, FIX::LegStrikeCurrency);
  270. FIELD_SET(*this, FIX::LegOptAttribute);
  271. FIELD_SET(*this, FIX::LegContractMultiplier);
  272. FIELD_SET(*this, FIX::LegUnitOfMeasure);
  273. FIELD_SET(*this, FIX::LegUnitOfMeasureQty);
  274. FIELD_SET(*this, FIX::LegPriceUnitOfMeasure);
  275. FIELD_SET(*this, FIX::LegPriceUnitOfMeasureQty);
  276. FIELD_SET(*this, FIX::LegTimeUnit);
  277. FIELD_SET(*this, FIX::LegExerciseStyle);
  278. FIELD_SET(*this, FIX::LegCouponRate);
  279. FIELD_SET(*this, FIX::LegSecurityExchange);
  280. FIELD_SET(*this, FIX::LegIssuer);
  281. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  282. FIELD_SET(*this, FIX::EncodedLegIssuer);
  283. FIELD_SET(*this, FIX::LegSecurityDesc);
  284. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  285. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  286. FIELD_SET(*this, FIX::LegRatioQty);
  287. FIELD_SET(*this, FIX::LegSide);
  288. FIELD_SET(*this, FIX::LegCurrency);
  289. FIELD_SET(*this, FIX::LegPool);
  290. FIELD_SET(*this, FIX::LegDatedDate);
  291. FIELD_SET(*this, FIX::LegContractSettlMonth);
  292. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  293. FIELD_SET(*this, FIX::LegPutOrCall);
  294. FIELD_SET(*this, FIX::LegOptionRatio);
  295. FIELD_SET(*this, FIX::LegContractMultiplierUnit);
  296. FIELD_SET(*this, FIX::LegFlowScheduleType);
  297. FIELD_SET(*this, FIX::LegQty);
  298. FIELD_SET(*this, FIX::LegOrderQty);
  299. FIELD_SET(*this, FIX::LegSwapType);
  300. FIELD_SET(*this, FIX::LegSettlType);
  301. FIELD_SET(*this, FIX::LegSettlDate);
  302. FIELD_SET(*this, FIX::NoLegStipulations);
  303. class NoLegStipulations: public FIX::Group
  304. {
  305. public:
  306. NoLegStipulations() : FIX::Group(683,688,FIX::message_order(688,689,0)) {}
  307. FIELD_SET(*this, FIX::LegStipulationType);
  308. FIELD_SET(*this, FIX::LegStipulationValue);
  309. };
  310. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  311. class NoNestedPartyIDs: public FIX::Group
  312. {
  313. public:
  314. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  315. FIELD_SET(*this, FIX::NestedPartyID);
  316. FIELD_SET(*this, FIX::NestedPartyIDSource);
  317. FIELD_SET(*this, FIX::NestedPartyRole);
  318. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  319. class NoNestedPartySubIDs: public FIX::Group
  320. {
  321. public:
  322. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  323. FIELD_SET(*this, FIX::NestedPartySubID);
  324. FIELD_SET(*this, FIX::NestedPartySubIDType);
  325. };
  326. };
  327. FIELD_SET(*this, FIX::LegPriceType);
  328. FIELD_SET(*this, FIX::LegBidPx);
  329. FIELD_SET(*this, FIX::LegOfferPx);
  330. FIELD_SET(*this, FIX::LegBenchmarkCurveCurrency);
  331. FIELD_SET(*this, FIX::LegBenchmarkCurveName);
  332. FIELD_SET(*this, FIX::LegBenchmarkCurvePoint);
  333. FIELD_SET(*this, FIX::LegBenchmarkPrice);
  334. FIELD_SET(*this, FIX::LegBenchmarkPriceType);
  335. FIELD_SET(*this, FIX::LegRefID);
  336. FIELD_SET(*this, FIX::LegBidForwardPoints);
  337. FIELD_SET(*this, FIX::LegOfferForwardPoints);
  338. };
  339. FIELD_SET(*this, FIX::BidPx);
  340. FIELD_SET(*this, FIX::OfferPx);
  341. FIELD_SET(*this, FIX::MktBidPx);
  342. FIELD_SET(*this, FIX::MktOfferPx);
  343. FIELD_SET(*this, FIX::MinBidSize);
  344. FIELD_SET(*this, FIX::BidSize);
  345. FIELD_SET(*this, FIX::MinOfferSize);
  346. FIELD_SET(*this, FIX::OfferSize);
  347. FIELD_SET(*this, FIX::MinQty);
  348. FIELD_SET(*this, FIX::ValidUntilTime);
  349. FIELD_SET(*this, FIX::BidSpotRate);
  350. FIELD_SET(*this, FIX::OfferSpotRate);
  351. FIELD_SET(*this, FIX::BidForwardPoints);
  352. FIELD_SET(*this, FIX::OfferForwardPoints);
  353. FIELD_SET(*this, FIX::BidSwapPoints);
  354. FIELD_SET(*this, FIX::OfferSwapPoints);
  355. FIELD_SET(*this, FIX::MidPx);
  356. FIELD_SET(*this, FIX::BidYield);
  357. FIELD_SET(*this, FIX::MidYield);
  358. FIELD_SET(*this, FIX::OfferYield);
  359. FIELD_SET(*this, FIX::TransactTime);
  360. FIELD_SET(*this, FIX::OrdType);
  361. FIELD_SET(*this, FIX::BidForwardPoints2);
  362. FIELD_SET(*this, FIX::OfferForwardPoints2);
  363. FIELD_SET(*this, FIX::SettlCurrBidFxRate);
  364. FIELD_SET(*this, FIX::SettlCurrOfferFxRate);
  365. FIELD_SET(*this, FIX::SettlCurrFxRateCalc);
  366. FIELD_SET(*this, FIX::CommType);
  367. FIELD_SET(*this, FIX::Commission);
  368. FIELD_SET(*this, FIX::CustOrderCapacity);
  369. FIELD_SET(*this, FIX::ExDestination);
  370. FIELD_SET(*this, FIX::ExDestinationIDSource);
  371. FIELD_SET(*this, FIX::OrderCapacity);
  372. FIELD_SET(*this, FIX::PriceType);
  373. FIELD_SET(*this, FIX::Spread);
  374. FIELD_SET(*this, FIX::BenchmarkCurveCurrency);
  375. FIELD_SET(*this, FIX::BenchmarkCurveName);
  376. FIELD_SET(*this, FIX::BenchmarkCurvePoint);
  377. FIELD_SET(*this, FIX::BenchmarkPrice);
  378. FIELD_SET(*this, FIX::BenchmarkPriceType);
  379. FIELD_SET(*this, FIX::BenchmarkSecurityID);
  380. FIELD_SET(*this, FIX::BenchmarkSecurityIDSource);
  381. FIELD_SET(*this, FIX::YieldType);
  382. FIELD_SET(*this, FIX::Yield);
  383. FIELD_SET(*this, FIX::YieldCalcDate);
  384. FIELD_SET(*this, FIX::YieldRedemptionDate);
  385. FIELD_SET(*this, FIX::YieldRedemptionPrice);
  386. FIELD_SET(*this, FIX::YieldRedemptionPriceType);
  387. FIELD_SET(*this, FIX::Text);
  388. FIELD_SET(*this, FIX::EncodedTextLen);
  389. FIELD_SET(*this, FIX::EncodedText);
  390. FIELD_SET(*this, FIX::BookingType);
  391. FIELD_SET(*this, FIX::OrderRestrictions);
  392. FIELD_SET(*this, FIX::SettlCurrency);
  393. FIELD_SET(*this, FIX::NoRateSources);
  394. class NoRateSources: public FIX::Group
  395. {
  396. public:
  397. NoRateSources() : FIX::Group(1445,1446,FIX::message_order(1446,1447,1448,0)) {}
  398. FIELD_SET(*this, FIX::RateSource);
  399. FIELD_SET(*this, FIX::RateSourceType);
  400. FIELD_SET(*this, FIX::ReferencePage);
  401. };
  402. };
  403. }
  404. #endif