MarketDataSnapshotFullRefresh.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. #ifndef FIX50_MARKETDATASNAPSHOTFULLREFRESH_H
  2. #define FIX50_MARKETDATASNAPSHOTFULLREFRESH_H
  3. #include "Message.h"
  4. namespace FIX50
  5. {
  6. class MarketDataSnapshotFullRefresh : public Message
  7. {
  8. public:
  9. MarketDataSnapshotFullRefresh() : Message(MsgType()) {}
  10. MarketDataSnapshotFullRefresh(const FIX::Message& m) : Message(m) {}
  11. MarketDataSnapshotFullRefresh(const Message& m) : Message(m) {}
  12. MarketDataSnapshotFullRefresh(const MarketDataSnapshotFullRefresh& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("W"); }
  14. FIELD_SET(*this, FIX::MDReportID);
  15. FIELD_SET(*this, FIX::ClearingBusinessDate);
  16. FIELD_SET(*this, FIX::MDBookType);
  17. FIELD_SET(*this, FIX::MDFeedType);
  18. FIELD_SET(*this, FIX::TradeDate);
  19. FIELD_SET(*this, FIX::MDReqID);
  20. FIELD_SET(*this, FIX::Symbol);
  21. FIELD_SET(*this, FIX::SymbolSfx);
  22. FIELD_SET(*this, FIX::SecurityID);
  23. FIELD_SET(*this, FIX::SecurityIDSource);
  24. FIELD_SET(*this, FIX::Product);
  25. FIELD_SET(*this, FIX::CFICode);
  26. FIELD_SET(*this, FIX::SecurityType);
  27. FIELD_SET(*this, FIX::SecuritySubType);
  28. FIELD_SET(*this, FIX::MaturityMonthYear);
  29. FIELD_SET(*this, FIX::MaturityDate);
  30. FIELD_SET(*this, FIX::MaturityTime);
  31. FIELD_SET(*this, FIX::PutOrCall);
  32. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  33. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  34. FIELD_SET(*this, FIX::SecurityStatus);
  35. FIELD_SET(*this, FIX::CouponPaymentDate);
  36. FIELD_SET(*this, FIX::IssueDate);
  37. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  38. FIELD_SET(*this, FIX::RepurchaseTerm);
  39. FIELD_SET(*this, FIX::RepurchaseRate);
  40. FIELD_SET(*this, FIX::Factor);
  41. FIELD_SET(*this, FIX::CreditRating);
  42. FIELD_SET(*this, FIX::InstrRegistry);
  43. FIELD_SET(*this, FIX::CountryOfIssue);
  44. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  45. FIELD_SET(*this, FIX::LocaleOfIssue);
  46. FIELD_SET(*this, FIX::RedemptionDate);
  47. FIELD_SET(*this, FIX::StrikePrice);
  48. FIELD_SET(*this, FIX::StrikeCurrency);
  49. FIELD_SET(*this, FIX::StrikeMultiplier);
  50. FIELD_SET(*this, FIX::StrikeValue);
  51. FIELD_SET(*this, FIX::OptAttribute);
  52. FIELD_SET(*this, FIX::ContractMultiplier);
  53. FIELD_SET(*this, FIX::MinPriceIncrement);
  54. FIELD_SET(*this, FIX::UnitOfMeasure);
  55. FIELD_SET(*this, FIX::TimeUnit);
  56. FIELD_SET(*this, FIX::CouponRate);
  57. FIELD_SET(*this, FIX::SecurityExchange);
  58. FIELD_SET(*this, FIX::PositionLimit);
  59. FIELD_SET(*this, FIX::NTPositionLimit);
  60. FIELD_SET(*this, FIX::Issuer);
  61. FIELD_SET(*this, FIX::EncodedIssuerLen);
  62. FIELD_SET(*this, FIX::EncodedIssuer);
  63. FIELD_SET(*this, FIX::SecurityDesc);
  64. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  65. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  66. FIELD_SET(*this, FIX::Pool);
  67. FIELD_SET(*this, FIX::ContractSettlMonth);
  68. FIELD_SET(*this, FIX::CPProgram);
  69. FIELD_SET(*this, FIX::CPRegType);
  70. FIELD_SET(*this, FIX::DatedDate);
  71. FIELD_SET(*this, FIX::InterestAccrualDate);
  72. FIELD_SET(*this, FIX::NoUnderlyings);
  73. class NoUnderlyings: public FIX::Group
  74. {
  75. public:
  76. 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)) {}
  77. FIELD_SET(*this, FIX::UnderlyingSymbol);
  78. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  79. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  80. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  81. FIELD_SET(*this, FIX::UnderlyingProduct);
  82. FIELD_SET(*this, FIX::UnderlyingCFICode);
  83. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  84. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  85. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  86. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  87. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  88. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  89. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  90. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  91. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  92. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  93. FIELD_SET(*this, FIX::UnderlyingFactor);
  94. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  95. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  96. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  97. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  98. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  99. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  100. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  101. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  102. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  103. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  104. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasure);
  105. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  106. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  107. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  108. FIELD_SET(*this, FIX::UnderlyingIssuer);
  109. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  110. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  111. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  112. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  113. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  114. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  115. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  116. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  117. FIELD_SET(*this, FIX::UnderlyingCurrency);
  118. FIELD_SET(*this, FIX::UnderlyingQty);
  119. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  120. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  121. FIELD_SET(*this, FIX::UnderlyingCashType);
  122. FIELD_SET(*this, FIX::UnderlyingPx);
  123. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  124. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  125. FIELD_SET(*this, FIX::UnderlyingStartValue);
  126. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  127. FIELD_SET(*this, FIX::UnderlyingEndValue);
  128. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  129. FIELD_SET(*this, FIX::UnderlyingFXRate);
  130. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  131. FIELD_SET(*this, FIX::UnderlyingCapValue);
  132. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  133. };
  134. FIELD_SET(*this, FIX::NoLegs);
  135. class NoLegs: public FIX::Group
  136. {
  137. public:
  138. 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)) {}
  139. FIELD_SET(*this, FIX::LegSymbol);
  140. FIELD_SET(*this, FIX::LegSymbolSfx);
  141. FIELD_SET(*this, FIX::LegSecurityID);
  142. FIELD_SET(*this, FIX::LegSecurityIDSource);
  143. FIELD_SET(*this, FIX::LegProduct);
  144. FIELD_SET(*this, FIX::LegCFICode);
  145. FIELD_SET(*this, FIX::LegSecurityType);
  146. FIELD_SET(*this, FIX::LegSecuritySubType);
  147. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  148. FIELD_SET(*this, FIX::LegMaturityDate);
  149. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  150. FIELD_SET(*this, FIX::LegIssueDate);
  151. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  152. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  153. FIELD_SET(*this, FIX::LegRepurchaseRate);
  154. FIELD_SET(*this, FIX::LegFactor);
  155. FIELD_SET(*this, FIX::LegCreditRating);
  156. FIELD_SET(*this, FIX::LegInstrRegistry);
  157. FIELD_SET(*this, FIX::LegCountryOfIssue);
  158. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  159. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  160. FIELD_SET(*this, FIX::LegRedemptionDate);
  161. FIELD_SET(*this, FIX::LegStrikePrice);
  162. FIELD_SET(*this, FIX::LegStrikeCurrency);
  163. FIELD_SET(*this, FIX::LegOptAttribute);
  164. FIELD_SET(*this, FIX::LegContractMultiplier);
  165. FIELD_SET(*this, FIX::LegUnitOfMeasure);
  166. FIELD_SET(*this, FIX::LegTimeUnit);
  167. FIELD_SET(*this, FIX::LegCouponRate);
  168. FIELD_SET(*this, FIX::LegSecurityExchange);
  169. FIELD_SET(*this, FIX::LegIssuer);
  170. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  171. FIELD_SET(*this, FIX::EncodedLegIssuer);
  172. FIELD_SET(*this, FIX::LegSecurityDesc);
  173. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  174. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  175. FIELD_SET(*this, FIX::LegRatioQty);
  176. FIELD_SET(*this, FIX::LegSide);
  177. FIELD_SET(*this, FIX::LegCurrency);
  178. FIELD_SET(*this, FIX::LegPool);
  179. FIELD_SET(*this, FIX::LegDatedDate);
  180. FIELD_SET(*this, FIX::LegContractSettlMonth);
  181. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  182. FIELD_SET(*this, FIX::LegOptionRatio);
  183. };
  184. FIELD_SET(*this, FIX::FinancialStatus);
  185. FIELD_SET(*this, FIX::CorporateAction);
  186. FIELD_SET(*this, FIX::NetChgPrevDay);
  187. FIELD_SET(*this, FIX::NoMDEntries);
  188. class NoMDEntries: public FIX::Group
  189. {
  190. public:
  191. NoMDEntries() : FIX::Group(268,269,FIX::message_order(269,278,270,40,15,271,272,273,274,275,336,625,276,277,282,283,284,286,59,432,126,110,18,287,37,198,299,288,289,346,290,546,811,58,354,355,1023,528,1024,332,333,1020,63,64,1070,83,1048,1026,1027,453,0)) {}
  192. FIELD_SET(*this, FIX::MDEntryType);
  193. FIELD_SET(*this, FIX::MDEntryID);
  194. FIELD_SET(*this, FIX::MDEntryPx);
  195. FIELD_SET(*this, FIX::OrdType);
  196. FIELD_SET(*this, FIX::Currency);
  197. FIELD_SET(*this, FIX::MDEntrySize);
  198. FIELD_SET(*this, FIX::MDEntryDate);
  199. FIELD_SET(*this, FIX::MDEntryTime);
  200. FIELD_SET(*this, FIX::TickDirection);
  201. FIELD_SET(*this, FIX::MDMkt);
  202. FIELD_SET(*this, FIX::TradingSessionID);
  203. FIELD_SET(*this, FIX::TradingSessionSubID);
  204. FIELD_SET(*this, FIX::QuoteCondition);
  205. FIELD_SET(*this, FIX::TradeCondition);
  206. FIELD_SET(*this, FIX::MDEntryOriginator);
  207. FIELD_SET(*this, FIX::LocationID);
  208. FIELD_SET(*this, FIX::DeskID);
  209. FIELD_SET(*this, FIX::OpenCloseSettlFlag);
  210. FIELD_SET(*this, FIX::TimeInForce);
  211. FIELD_SET(*this, FIX::ExpireDate);
  212. FIELD_SET(*this, FIX::ExpireTime);
  213. FIELD_SET(*this, FIX::MinQty);
  214. FIELD_SET(*this, FIX::ExecInst);
  215. FIELD_SET(*this, FIX::SellerDays);
  216. FIELD_SET(*this, FIX::OrderID);
  217. FIELD_SET(*this, FIX::SecondaryOrderID);
  218. FIELD_SET(*this, FIX::QuoteEntryID);
  219. FIELD_SET(*this, FIX::MDEntryBuyer);
  220. FIELD_SET(*this, FIX::MDEntrySeller);
  221. FIELD_SET(*this, FIX::NumberOfOrders);
  222. FIELD_SET(*this, FIX::MDEntryPositionNo);
  223. FIELD_SET(*this, FIX::Scope);
  224. FIELD_SET(*this, FIX::PriceDelta);
  225. FIELD_SET(*this, FIX::Text);
  226. FIELD_SET(*this, FIX::EncodedTextLen);
  227. FIELD_SET(*this, FIX::EncodedText);
  228. FIELD_SET(*this, FIX::MDPriceLevel);
  229. FIELD_SET(*this, FIX::OrderCapacity);
  230. FIELD_SET(*this, FIX::MDOriginType);
  231. FIELD_SET(*this, FIX::HighPx);
  232. FIELD_SET(*this, FIX::LowPx);
  233. FIELD_SET(*this, FIX::TradeVolume);
  234. FIELD_SET(*this, FIX::SettlType);
  235. FIELD_SET(*this, FIX::SettlDate);
  236. FIELD_SET(*this, FIX::MDQuoteType);
  237. FIELD_SET(*this, FIX::RptSeq);
  238. FIELD_SET(*this, FIX::DealingCapacity);
  239. FIELD_SET(*this, FIX::MDEntrySpotRate);
  240. FIELD_SET(*this, FIX::MDEntryForwardPoints);
  241. FIELD_SET(*this, FIX::NoPartyIDs);
  242. class NoPartyIDs: public FIX::Group
  243. {
  244. public:
  245. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  246. FIELD_SET(*this, FIX::PartyID);
  247. FIELD_SET(*this, FIX::PartyIDSource);
  248. FIELD_SET(*this, FIX::PartyRole);
  249. FIELD_SET(*this, FIX::NoPartySubIDs);
  250. class NoPartySubIDs: public FIX::Group
  251. {
  252. public:
  253. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  254. FIELD_SET(*this, FIX::PartySubID);
  255. FIELD_SET(*this, FIX::PartySubIDType);
  256. };
  257. };
  258. };
  259. FIELD_SET(*this, FIX::ApplQueueDepth);
  260. FIELD_SET(*this, FIX::ApplQueueResolution);
  261. FIELD_SET(*this, FIX::NoRoutingIDs);
  262. class NoRoutingIDs: public FIX::Group
  263. {
  264. public:
  265. NoRoutingIDs() : FIX::Group(215,216,FIX::message_order(216,217,0)) {}
  266. FIELD_SET(*this, FIX::RoutingType);
  267. FIELD_SET(*this, FIX::RoutingID);
  268. };
  269. };
  270. }
  271. #endif