QuoteResponse.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. #ifndef FIX44_QUOTERESPONSE_H
  2. #define FIX44_QUOTERESPONSE_H
  3. #include "Message.h"
  4. namespace FIX44
  5. {
  6. class QuoteResponse : public Message
  7. {
  8. public:
  9. QuoteResponse() : Message(MsgType()) {}
  10. QuoteResponse(const FIX::Message& m) : Message(m) {}
  11. QuoteResponse(const Message& m) : Message(m) {}
  12. QuoteResponse(const QuoteResponse& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("AJ"); }
  14. QuoteResponse(
  15. const FIX::QuoteRespID& aQuoteRespID,
  16. const FIX::QuoteRespType& aQuoteRespType )
  17. : Message(MsgType())
  18. {
  19. set(aQuoteRespID);
  20. set(aQuoteRespType);
  21. }
  22. FIELD_SET(*this, FIX::QuoteRespID);
  23. FIELD_SET(*this, FIX::QuoteID);
  24. FIELD_SET(*this, FIX::QuoteRespType);
  25. FIELD_SET(*this, FIX::ClOrdID);
  26. FIELD_SET(*this, FIX::OrderCapacity);
  27. FIELD_SET(*this, FIX::IOIID);
  28. FIELD_SET(*this, FIX::QuoteType);
  29. FIELD_SET(*this, FIX::NoQuoteQualifiers);
  30. class NoQuoteQualifiers: public FIX::Group
  31. {
  32. public:
  33. NoQuoteQualifiers() : FIX::Group(735,695,FIX::message_order(695,0)) {}
  34. FIELD_SET(*this, FIX::QuoteQualifier);
  35. };
  36. FIELD_SET(*this, FIX::NoPartyIDs);
  37. class NoPartyIDs: public FIX::Group
  38. {
  39. public:
  40. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  41. FIELD_SET(*this, FIX::PartyID);
  42. FIELD_SET(*this, FIX::PartyIDSource);
  43. FIELD_SET(*this, FIX::PartyRole);
  44. FIELD_SET(*this, FIX::NoPartySubIDs);
  45. class NoPartySubIDs: public FIX::Group
  46. {
  47. public:
  48. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  49. FIELD_SET(*this, FIX::PartySubID);
  50. FIELD_SET(*this, FIX::PartySubIDType);
  51. };
  52. };
  53. FIELD_SET(*this, FIX::TradingSessionID);
  54. FIELD_SET(*this, FIX::TradingSessionSubID);
  55. FIELD_SET(*this, FIX::Symbol);
  56. FIELD_SET(*this, FIX::SymbolSfx);
  57. FIELD_SET(*this, FIX::SecurityID);
  58. FIELD_SET(*this, FIX::SecurityIDSource);
  59. FIELD_SET(*this, FIX::Product);
  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::PutOrCall);
  66. FIELD_SET(*this, FIX::CouponPaymentDate);
  67. FIELD_SET(*this, FIX::IssueDate);
  68. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  69. FIELD_SET(*this, FIX::RepurchaseTerm);
  70. FIELD_SET(*this, FIX::RepurchaseRate);
  71. FIELD_SET(*this, FIX::Factor);
  72. FIELD_SET(*this, FIX::CreditRating);
  73. FIELD_SET(*this, FIX::InstrRegistry);
  74. FIELD_SET(*this, FIX::CountryOfIssue);
  75. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  76. FIELD_SET(*this, FIX::LocaleOfIssue);
  77. FIELD_SET(*this, FIX::RedemptionDate);
  78. FIELD_SET(*this, FIX::StrikePrice);
  79. FIELD_SET(*this, FIX::StrikeCurrency);
  80. FIELD_SET(*this, FIX::OptAttribute);
  81. FIELD_SET(*this, FIX::ContractMultiplier);
  82. FIELD_SET(*this, FIX::CouponRate);
  83. FIELD_SET(*this, FIX::SecurityExchange);
  84. FIELD_SET(*this, FIX::Issuer);
  85. FIELD_SET(*this, FIX::EncodedIssuerLen);
  86. FIELD_SET(*this, FIX::EncodedIssuer);
  87. FIELD_SET(*this, FIX::SecurityDesc);
  88. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  89. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  90. FIELD_SET(*this, FIX::Pool);
  91. FIELD_SET(*this, FIX::ContractSettlMonth);
  92. FIELD_SET(*this, FIX::CPProgram);
  93. FIELD_SET(*this, FIX::CPRegType);
  94. FIELD_SET(*this, FIX::DatedDate);
  95. FIELD_SET(*this, FIX::InterestAccrualDate);
  96. FIELD_SET(*this, FIX::AgreementDesc);
  97. FIELD_SET(*this, FIX::AgreementID);
  98. FIELD_SET(*this, FIX::AgreementDate);
  99. FIELD_SET(*this, FIX::AgreementCurrency);
  100. FIELD_SET(*this, FIX::TerminationType);
  101. FIELD_SET(*this, FIX::StartDate);
  102. FIELD_SET(*this, FIX::EndDate);
  103. FIELD_SET(*this, FIX::DeliveryType);
  104. FIELD_SET(*this, FIX::MarginRatio);
  105. FIELD_SET(*this, FIX::NoUnderlyings);
  106. class NoUnderlyings: public FIX::Group
  107. {
  108. public:
  109. 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)) {}
  110. FIELD_SET(*this, FIX::UnderlyingSymbol);
  111. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  112. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  113. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  114. FIELD_SET(*this, FIX::UnderlyingProduct);
  115. FIELD_SET(*this, FIX::UnderlyingCFICode);
  116. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  117. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  118. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  119. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  120. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  121. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  122. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  123. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  124. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  125. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  126. FIELD_SET(*this, FIX::UnderlyingFactor);
  127. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  128. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  129. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  130. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  131. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  132. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  133. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  134. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  135. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  136. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  137. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  138. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  139. FIELD_SET(*this, FIX::UnderlyingIssuer);
  140. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  141. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  142. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  143. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  144. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  145. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  146. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  147. FIELD_SET(*this, FIX::UnderlyingCurrency);
  148. FIELD_SET(*this, FIX::UnderlyingQty);
  149. FIELD_SET(*this, FIX::UnderlyingPx);
  150. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  151. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  152. FIELD_SET(*this, FIX::UnderlyingStartValue);
  153. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  154. FIELD_SET(*this, FIX::UnderlyingEndValue);
  155. };
  156. FIELD_SET(*this, FIX::Side);
  157. FIELD_SET(*this, FIX::OrderQty);
  158. FIELD_SET(*this, FIX::CashOrderQty);
  159. FIELD_SET(*this, FIX::OrderPercent);
  160. FIELD_SET(*this, FIX::RoundingDirection);
  161. FIELD_SET(*this, FIX::RoundingModulus);
  162. FIELD_SET(*this, FIX::SettlType);
  163. FIELD_SET(*this, FIX::SettlDate);
  164. FIELD_SET(*this, FIX::SettlDate2);
  165. FIELD_SET(*this, FIX::OrderQty2);
  166. FIELD_SET(*this, FIX::Currency);
  167. FIELD_SET(*this, FIX::NoStipulations);
  168. class NoStipulations: public FIX::Group
  169. {
  170. public:
  171. NoStipulations() : FIX::Group(232,233,FIX::message_order(233,234,0)) {}
  172. FIELD_SET(*this, FIX::StipulationType);
  173. FIELD_SET(*this, FIX::StipulationValue);
  174. };
  175. FIELD_SET(*this, FIX::Account);
  176. FIELD_SET(*this, FIX::AcctIDSource);
  177. FIELD_SET(*this, FIX::AccountType);
  178. FIELD_SET(*this, FIX::NoLegs);
  179. class NoLegs: public FIX::Group
  180. {
  181. public:
  182. 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,587,588,683,539,686,681,684,676,677,678,679,680,0)) {}
  183. FIELD_SET(*this, FIX::LegSymbol);
  184. FIELD_SET(*this, FIX::LegSymbolSfx);
  185. FIELD_SET(*this, FIX::LegSecurityID);
  186. FIELD_SET(*this, FIX::LegSecurityIDSource);
  187. FIELD_SET(*this, FIX::LegProduct);
  188. FIELD_SET(*this, FIX::LegCFICode);
  189. FIELD_SET(*this, FIX::LegSecurityType);
  190. FIELD_SET(*this, FIX::LegSecuritySubType);
  191. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  192. FIELD_SET(*this, FIX::LegMaturityDate);
  193. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  194. FIELD_SET(*this, FIX::LegIssueDate);
  195. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  196. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  197. FIELD_SET(*this, FIX::LegRepurchaseRate);
  198. FIELD_SET(*this, FIX::LegFactor);
  199. FIELD_SET(*this, FIX::LegCreditRating);
  200. FIELD_SET(*this, FIX::LegInstrRegistry);
  201. FIELD_SET(*this, FIX::LegCountryOfIssue);
  202. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  203. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  204. FIELD_SET(*this, FIX::LegRedemptionDate);
  205. FIELD_SET(*this, FIX::LegStrikePrice);
  206. FIELD_SET(*this, FIX::LegStrikeCurrency);
  207. FIELD_SET(*this, FIX::LegOptAttribute);
  208. FIELD_SET(*this, FIX::LegContractMultiplier);
  209. FIELD_SET(*this, FIX::LegCouponRate);
  210. FIELD_SET(*this, FIX::LegSecurityExchange);
  211. FIELD_SET(*this, FIX::LegIssuer);
  212. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  213. FIELD_SET(*this, FIX::EncodedLegIssuer);
  214. FIELD_SET(*this, FIX::LegSecurityDesc);
  215. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  216. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  217. FIELD_SET(*this, FIX::LegRatioQty);
  218. FIELD_SET(*this, FIX::LegSide);
  219. FIELD_SET(*this, FIX::LegCurrency);
  220. FIELD_SET(*this, FIX::LegPool);
  221. FIELD_SET(*this, FIX::LegDatedDate);
  222. FIELD_SET(*this, FIX::LegContractSettlMonth);
  223. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  224. FIELD_SET(*this, FIX::LegQty);
  225. FIELD_SET(*this, FIX::LegSwapType);
  226. FIELD_SET(*this, FIX::LegSettlType);
  227. FIELD_SET(*this, FIX::LegSettlDate);
  228. FIELD_SET(*this, FIX::NoLegStipulations);
  229. class NoLegStipulations: public FIX::Group
  230. {
  231. public:
  232. NoLegStipulations() : FIX::Group(683,688,FIX::message_order(688,689,0)) {}
  233. FIELD_SET(*this, FIX::LegStipulationType);
  234. FIELD_SET(*this, FIX::LegStipulationValue);
  235. };
  236. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  237. class NoNestedPartyIDs: public FIX::Group
  238. {
  239. public:
  240. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  241. FIELD_SET(*this, FIX::NestedPartyID);
  242. FIELD_SET(*this, FIX::NestedPartyIDSource);
  243. FIELD_SET(*this, FIX::NestedPartyRole);
  244. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  245. class NoNestedPartySubIDs: public FIX::Group
  246. {
  247. public:
  248. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  249. FIELD_SET(*this, FIX::NestedPartySubID);
  250. FIELD_SET(*this, FIX::NestedPartySubIDType);
  251. };
  252. };
  253. FIELD_SET(*this, FIX::LegPriceType);
  254. FIELD_SET(*this, FIX::LegBidPx);
  255. FIELD_SET(*this, FIX::LegOfferPx);
  256. FIELD_SET(*this, FIX::LegBenchmarkCurveCurrency);
  257. FIELD_SET(*this, FIX::LegBenchmarkCurveName);
  258. FIELD_SET(*this, FIX::LegBenchmarkCurvePoint);
  259. FIELD_SET(*this, FIX::LegBenchmarkPrice);
  260. FIELD_SET(*this, FIX::LegBenchmarkPriceType);
  261. };
  262. FIELD_SET(*this, FIX::BidPx);
  263. FIELD_SET(*this, FIX::OfferPx);
  264. FIELD_SET(*this, FIX::MktBidPx);
  265. FIELD_SET(*this, FIX::MktOfferPx);
  266. FIELD_SET(*this, FIX::MinBidSize);
  267. FIELD_SET(*this, FIX::BidSize);
  268. FIELD_SET(*this, FIX::MinOfferSize);
  269. FIELD_SET(*this, FIX::OfferSize);
  270. FIELD_SET(*this, FIX::ValidUntilTime);
  271. FIELD_SET(*this, FIX::BidSpotRate);
  272. FIELD_SET(*this, FIX::OfferSpotRate);
  273. FIELD_SET(*this, FIX::BidForwardPoints);
  274. FIELD_SET(*this, FIX::OfferForwardPoints);
  275. FIELD_SET(*this, FIX::MidPx);
  276. FIELD_SET(*this, FIX::BidYield);
  277. FIELD_SET(*this, FIX::MidYield);
  278. FIELD_SET(*this, FIX::OfferYield);
  279. FIELD_SET(*this, FIX::TransactTime);
  280. FIELD_SET(*this, FIX::OrdType);
  281. FIELD_SET(*this, FIX::BidForwardPoints2);
  282. FIELD_SET(*this, FIX::OfferForwardPoints2);
  283. FIELD_SET(*this, FIX::SettlCurrBidFxRate);
  284. FIELD_SET(*this, FIX::SettlCurrOfferFxRate);
  285. FIELD_SET(*this, FIX::SettlCurrFxRateCalc);
  286. FIELD_SET(*this, FIX::Commission);
  287. FIELD_SET(*this, FIX::CommType);
  288. FIELD_SET(*this, FIX::CustOrderCapacity);
  289. FIELD_SET(*this, FIX::ExDestination);
  290. FIELD_SET(*this, FIX::Text);
  291. FIELD_SET(*this, FIX::EncodedTextLen);
  292. FIELD_SET(*this, FIX::EncodedText);
  293. FIELD_SET(*this, FIX::Price);
  294. FIELD_SET(*this, FIX::PriceType);
  295. FIELD_SET(*this, FIX::Spread);
  296. FIELD_SET(*this, FIX::BenchmarkCurveCurrency);
  297. FIELD_SET(*this, FIX::BenchmarkCurveName);
  298. FIELD_SET(*this, FIX::BenchmarkCurvePoint);
  299. FIELD_SET(*this, FIX::BenchmarkPrice);
  300. FIELD_SET(*this, FIX::BenchmarkPriceType);
  301. FIELD_SET(*this, FIX::BenchmarkSecurityID);
  302. FIELD_SET(*this, FIX::BenchmarkSecurityIDSource);
  303. FIELD_SET(*this, FIX::YieldType);
  304. FIELD_SET(*this, FIX::Yield);
  305. FIELD_SET(*this, FIX::YieldCalcDate);
  306. FIELD_SET(*this, FIX::YieldRedemptionDate);
  307. FIELD_SET(*this, FIX::YieldRedemptionPrice);
  308. FIELD_SET(*this, FIX::YieldRedemptionPriceType);
  309. };
  310. }
  311. #endif