quickfix_ruby 1.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. data/ext/quickfix/Acceptor.cpp +248 -0
  3. data/ext/quickfix/Acceptor.h +127 -0
  4. data/ext/quickfix/Allocator.h +9 -0
  5. data/ext/quickfix/Application.h +127 -0
  6. data/ext/quickfix/AtomicCount.h +109 -0
  7. data/ext/quickfix/DOMDocument.h +74 -0
  8. data/ext/quickfix/DataDictionary.cpp +618 -0
  9. data/ext/quickfix/DataDictionary.h +539 -0
  10. data/ext/quickfix/DataDictionaryProvider.cpp +71 -0
  11. data/ext/quickfix/DataDictionaryProvider.h +70 -0
  12. data/ext/quickfix/DatabaseConnectionID.h +105 -0
  13. data/ext/quickfix/DatabaseConnectionPool.h +91 -0
  14. data/ext/quickfix/Dictionary.cpp +162 -0
  15. data/ext/quickfix/Dictionary.h +94 -0
  16. data/ext/quickfix/Event.h +95 -0
  17. data/ext/quickfix/Exceptions.h +299 -0
  18. data/ext/quickfix/Field.h +672 -0
  19. data/ext/quickfix/FieldConvertors.h +863 -0
  20. data/ext/quickfix/FieldMap.cpp +238 -0
  21. data/ext/quickfix/FieldMap.h +244 -0
  22. data/ext/quickfix/FieldNumbers.h +46 -0
  23. data/ext/quickfix/FieldTypes.cpp +64 -0
  24. data/ext/quickfix/FieldTypes.h +698 -0
  25. data/ext/quickfix/Fields.h +31 -0
  26. data/ext/quickfix/FileLog.cpp +200 -0
  27. data/ext/quickfix/FileLog.h +112 -0
  28. data/ext/quickfix/FileStore.cpp +332 -0
  29. data/ext/quickfix/FileStore.h +129 -0
  30. data/ext/quickfix/FixFieldNumbers.h +1537 -0
  31. data/ext/quickfix/FixFields.h +1538 -0
  32. data/ext/quickfix/FixValues.h +3281 -0
  33. data/ext/quickfix/FlexLexer.h +188 -0
  34. data/ext/quickfix/Group.cpp +64 -0
  35. data/ext/quickfix/Group.h +73 -0
  36. data/ext/quickfix/HtmlBuilder.h +186 -0
  37. data/ext/quickfix/HttpConnection.cpp +739 -0
  38. data/ext/quickfix/HttpConnection.h +78 -0
  39. data/ext/quickfix/HttpMessage.cpp +149 -0
  40. data/ext/quickfix/HttpMessage.h +133 -0
  41. data/ext/quickfix/HttpParser.cpp +49 -0
  42. data/ext/quickfix/HttpParser.h +54 -0
  43. data/ext/quickfix/HttpServer.cpp +169 -0
  44. data/ext/quickfix/HttpServer.h +78 -0
  45. data/ext/quickfix/Initiator.cpp +289 -0
  46. data/ext/quickfix/Initiator.h +149 -0
  47. data/ext/quickfix/Log.cpp +77 -0
  48. data/ext/quickfix/Log.h +179 -0
  49. data/ext/quickfix/Message.cpp +580 -0
  50. data/ext/quickfix/Message.h +370 -0
  51. data/ext/quickfix/MessageCracker.h +188 -0
  52. data/ext/quickfix/MessageSorters.cpp +105 -0
  53. data/ext/quickfix/MessageSorters.h +156 -0
  54. data/ext/quickfix/MessageStore.cpp +146 -0
  55. data/ext/quickfix/MessageStore.h +174 -0
  56. data/ext/quickfix/Mutex.h +131 -0
  57. data/ext/quickfix/MySQLConnection.h +194 -0
  58. data/ext/quickfix/MySQLLog.cpp +275 -0
  59. data/ext/quickfix/MySQLLog.h +145 -0
  60. data/ext/quickfix/MySQLStore.cpp +331 -0
  61. data/ext/quickfix/MySQLStore.h +142 -0
  62. data/ext/quickfix/NullStore.cpp +54 -0
  63. data/ext/quickfix/NullStore.h +99 -0
  64. data/ext/quickfix/OdbcConnection.h +266 -0
  65. data/ext/quickfix/OdbcLog.cpp +252 -0
  66. data/ext/quickfix/OdbcLog.h +117 -0
  67. data/ext/quickfix/OdbcStore.cpp +338 -0
  68. data/ext/quickfix/OdbcStore.h +113 -0
  69. data/ext/quickfix/PUGIXML_DOMDocument.cpp +112 -0
  70. data/ext/quickfix/PUGIXML_DOMDocument.h +81 -0
  71. data/ext/quickfix/Parser.cpp +103 -0
  72. data/ext/quickfix/Parser.h +57 -0
  73. data/ext/quickfix/PostgreSQLConnection.h +176 -0
  74. data/ext/quickfix/PostgreSQLLog.cpp +276 -0
  75. data/ext/quickfix/PostgreSQLLog.h +144 -0
  76. data/ext/quickfix/PostgreSQLStore.cpp +334 -0
  77. data/ext/quickfix/PostgreSQLStore.h +141 -0
  78. data/ext/quickfix/Queue.h +75 -0
  79. data/ext/quickfix/QuickfixRuby.cpp +252066 -0
  80. data/ext/quickfix/QuickfixRuby.h +34 -0
  81. data/ext/quickfix/Responder.h +43 -0
  82. data/ext/quickfix/Session.cpp +1487 -0
  83. data/ext/quickfix/Session.h +335 -0
  84. data/ext/quickfix/SessionFactory.cpp +274 -0
  85. data/ext/quickfix/SessionFactory.h +86 -0
  86. data/ext/quickfix/SessionID.h +170 -0
  87. data/ext/quickfix/SessionSettings.cpp +189 -0
  88. data/ext/quickfix/SessionSettings.h +171 -0
  89. data/ext/quickfix/SessionState.h +231 -0
  90. data/ext/quickfix/Settings.cpp +100 -0
  91. data/ext/quickfix/Settings.h +53 -0
  92. data/ext/quickfix/SharedArray.h +150 -0
  93. data/ext/quickfix/SocketAcceptor.cpp +222 -0
  94. data/ext/quickfix/SocketAcceptor.h +75 -0
  95. data/ext/quickfix/SocketConnection.cpp +238 -0
  96. data/ext/quickfix/SocketConnection.h +103 -0
  97. data/ext/quickfix/SocketConnector.cpp +116 -0
  98. data/ext/quickfix/SocketConnector.h +67 -0
  99. data/ext/quickfix/SocketInitiator.cpp +260 -0
  100. data/ext/quickfix/SocketInitiator.h +81 -0
  101. data/ext/quickfix/SocketMonitor.cpp +335 -0
  102. data/ext/quickfix/SocketMonitor.h +111 -0
  103. data/ext/quickfix/SocketServer.cpp +177 -0
  104. data/ext/quickfix/SocketServer.h +100 -0
  105. data/ext/quickfix/ThreadedSocketAcceptor.cpp +258 -0
  106. data/ext/quickfix/ThreadedSocketAcceptor.h +98 -0
  107. data/ext/quickfix/ThreadedSocketConnection.cpp +209 -0
  108. data/ext/quickfix/ThreadedSocketConnection.h +82 -0
  109. data/ext/quickfix/ThreadedSocketInitiator.cpp +268 -0
  110. data/ext/quickfix/ThreadedSocketInitiator.h +84 -0
  111. data/ext/quickfix/TimeRange.cpp +173 -0
  112. data/ext/quickfix/TimeRange.h +258 -0
  113. data/ext/quickfix/Utility.cpp +537 -0
  114. data/ext/quickfix/Utility.h +219 -0
  115. data/ext/quickfix/Values.h +62 -0
  116. data/ext/quickfix/config.h +0 -0
  117. data/ext/quickfix/config_windows.h +0 -0
  118. data/ext/quickfix/extconf.rb +12 -0
  119. data/ext/quickfix/index.h +37 -0
  120. data/ext/quickfix/pugiconfig.hpp +72 -0
  121. data/ext/quickfix/pugixml.cpp +10765 -0
  122. data/ext/quickfix/pugixml.hpp +1341 -0
  123. data/ext/quickfix/strptime.h +7 -0
  124. data/lib/quickfix40.rb +274 -0
  125. data/lib/quickfix41.rb +351 -0
  126. data/lib/quickfix42.rb +1184 -0
  127. data/lib/quickfix43.rb +3504 -0
  128. data/lib/quickfix44.rb +10721 -0
  129. data/lib/quickfix50.rb +13426 -0
  130. data/lib/quickfix50sp1.rb +15629 -0
  131. data/lib/quickfix50sp2.rb +17068 -0
  132. data/lib/quickfix_fields.rb +19853 -0
  133. data/lib/quickfix_ruby.rb +82 -0
  134. data/lib/quickfixt11.rb +70 -0
  135. data/spec/FIX40.xml +862 -0
  136. data/spec/FIX41.xml +1285 -0
  137. data/spec/FIX42.xml +2746 -0
  138. data/spec/FIX43.xml +4229 -0
  139. data/spec/FIX44.xml +6596 -0
  140. data/spec/FIX50.xml +8137 -0
  141. data/spec/FIX50SP1.xml +9496 -0
  142. data/spec/FIX50SP2.xml +10011 -0
  143. data/spec/FIXT11.xml +313 -0
  144. data/test/test_DataDictionaryTestCase.rb +268 -0
  145. data/test/test_DictionaryTestCase.rb +112 -0
  146. data/test/test_FieldBaseTestCase.rb +24 -0
  147. data/test/test_MessageTestCase.rb +368 -0
  148. data/test/test_SessionSettingsTestCase.rb +41 -0
  149. metadata +193 -0
@@ -0,0 +1,1537 @@
1
+ #ifndef FIX_FIELD_NUMBERS_H
2
+ #define FIX_FIELD_NUMBERS_H
3
+
4
+ namespace FIX
5
+ {
6
+ namespace FIELD
7
+ {
8
+ const int MaxPriceLevels = 1090;
9
+ const int DerivativeEncodedIssuer = 1278;
10
+ const int NoCompIDs = 936;
11
+ const int SettlInstRefID = 214;
12
+ const int NestedPartyID = 524;
13
+ const int DetachmentPoint = 1458;
14
+ const int LateIndicator = 978;
15
+ const int SecurityListID = 1465;
16
+ const int DerivativeFlowScheduleType = 1442;
17
+ const int FlexibleIndicator = 1244;
18
+ const int NoExecInstRules = 1232;
19
+ const int SideTrdRegTimestamp = 1012;
20
+ const int DeliveryForm = 668;
21
+ const int ExecRestatementReason = 378;
22
+ const int MidYield = 633;
23
+ const int ContractMultiplier = 231;
24
+ const int CcyAmt = 1157;
25
+ const int LegOrderQty = 685;
26
+ const int AllocIntermedReqType = 808;
27
+ const int UnderlyingIssuer = 306;
28
+ const int NoNested2PartyIDs = 756;
29
+ const int MinTradeVol = 562;
30
+ const int SettlCurrAmt = 119;
31
+ const int DerivativeInstrumentPartyRole = 1295;
32
+ const int YieldRedemptionPriceType = 698;
33
+ const int NewsRefID = 1476;
34
+ const int SecurityListTypeSource = 1471;
35
+ const int ApplReqID = 1346;
36
+ const int DerivativeFuturesValuationMethod = 1319;
37
+ const int NoLegSecurityAltID = 604;
38
+ const int DerivativeSecurityType = 1249;
39
+ const int CollInquiryQualifier = 896;
40
+ const int RawData = 96;
41
+ const int CashSettlAgentContactPhone = 187;
42
+ const int CreditRating = 255;
43
+ const int ContingencyType = 1385;
44
+ const int StrikeCurrency = 947;
45
+ const int TradeVolume = 1020;
46
+ const int SideTrdRegTimestampSrc = 1014;
47
+ const int DeliveryDate = 743;
48
+ const int EmailType = 94;
49
+ const int EncodedListExecInst = 353;
50
+ const int ContraTradeTime = 438;
51
+ const int MaturityMonthYearIncrement = 1229;
52
+ const int RootPartyIDSource = 1118;
53
+ const int UnderlyingCouponPaymentDate = 241;
54
+ const int BidYield = 632;
55
+ const int IOIQltyInd = 25;
56
+ const int Issuer = 106;
57
+ const int CardNumber = 489;
58
+ const int NoLegStipulations = 683;
59
+ const int LegSecurityExchange = 616;
60
+ const int CashOrderQty = 152;
61
+ const int AccruedInterestAmt = 159;
62
+ const int MDEntrySeller = 289;
63
+ const int LegPrice = 566;
64
+ const int DeliverToCompID = 128;
65
+ const int TargetLocationID = 143;
66
+ const int OfferForwardPoints2 = 643;
67
+ const int RatioQty = 319;
68
+ const int MultiLegRptTypeReq = 563;
69
+ const int AllocAccount = 79;
70
+ const int TotalVolumeTraded = 387;
71
+ const int LinesOfText = 33;
72
+ const int AccountType = 581;
73
+ const int MDEntryPositionNo = 290;
74
+ const int HaltReasonInt = 327;
75
+ const int FutSettDate = 64;
76
+ const int SecurityDesc = 107;
77
+ const int MinQty = 110;
78
+ const int SettlCurrency = 120;
79
+ const int PegOffsetValue = 211;
80
+ const int DerivativeSecurityAltIDSource = 1220;
81
+ const int NoSettlPartySubIDs = 801;
82
+ const int AllocReportID = 755;
83
+ const int LegCFICode = 608;
84
+ const int LegFutSettDate = 588;
85
+ const int LegBenchmarkCurveName = 677;
86
+ const int ClearingFeeIndicator = 635;
87
+ const int BrokerOfCredit = 92;
88
+ const int SecurityListRefID = 1466;
89
+ const int UnderlyingLegMaturityTime = 1405;
90
+ const int NestedPartySubIDType = 805;
91
+ const int BidType = 394;
92
+ const int MDEntryRefID = 280;
93
+ const int UnderlyingUnitOfMeasureQty = 1423;
94
+ const int UnderlyingLegMaturityDate = 1345;
95
+ const int StartTickPriceRange = 1206;
96
+ const int LegContractSettlMonth = 955;
97
+ const int UnderlyingSecurityDesc = 307;
98
+ const int CashDistribPayRef = 501;
99
+ const int QuotePriceType = 692;
100
+ const int EncodedAllocText = 361;
101
+ const int UnderlyingMaturityMonthYear = 313;
102
+ const int UnderlyingOriginalNotionalPercentageOutstanding = 1456;
103
+ const int MultilegPriceMethod = 1378;
104
+ const int TotNoFills = 1361;
105
+ const int DerivativeSettleOnOpenFlag = 1254;
106
+ const int UnderlyingRepurchaseTerm = 244;
107
+ const int DerivativeCountryOfIssue = 1258;
108
+ const int ListMethod = 1198;
109
+ const int UnderlyingCPProgram = 877;
110
+ const int PriceDelta = 811;
111
+ const int RefSeqNum = 45;
112
+ const int AutoAcceptIndicator = 754;
113
+ const int MDImplicitDelete = 547;
114
+ const int NoStipulations = 232;
115
+ const int ClearingBusinessDate = 715;
116
+ const int LocationID = 283;
117
+ const int Currency = 15;
118
+ const int RoutingType = 216;
119
+ const int UnderlyingStrikePrice = 316;
120
+ const int BidTradeType = 418;
121
+ const int UnderlyingAttachmentPoint = 1459;
122
+ const int TotNoRejQuotes = 1170;
123
+ const int OrdStatusReqID = 790;
124
+ const int SenderCompID = 49;
125
+ const int OrdRejReason = 103;
126
+ const int MaturityMonthYearIncrementUnits = 1302;
127
+ const int DisplayWhen = 1083;
128
+ const int ApplQueueAction = 815;
129
+ const int RegistTransType = 514;
130
+ const int PaymentRemitterID = 505;
131
+ const int PriceType = 423;
132
+ const int MarketReqID = 1393;
133
+ const int NoNestedInstrAttrib = 1312;
134
+ const int SecuritySubType = 762;
135
+ const int ClOrdID = 11;
136
+ const int MaturityDay = 205;
137
+ const int UnderlyingSeniority = 1454;
138
+ const int MarketSegmentDesc = 1396;
139
+ const int NoMarketSegments = 1310;
140
+ const int SettlObligMode = 1159;
141
+ const int SecurityUpdateAction = 980;
142
+ const int NetworkRequestType = 935;
143
+ const int LiquidityPctLow = 402;
144
+ const int PartyRole = 452;
145
+ const int LegRatioQty = 623;
146
+ const int SettlCurrFxRate = 155;
147
+ const int LegContractMultiplierUnit = 1436;
148
+ const int SecureData = 91;
149
+ const int SenderLocationID = 142;
150
+ const int FirstPx = 1025;
151
+ const int EncodedLegIssuer = 619;
152
+ const int AssignmentMethod = 744;
153
+ const int RoutingID = 217;
154
+ const int StrategyParameterType = 959;
155
+ const int EncryptMethod = 98;
156
+ const int UnderlyingStateOrProvinceOfIssue = 593;
157
+ const int ApplNewSeqNum = 1399;
158
+ const int DerivativeEncodedSecurityDescLen = 1280;
159
+ const int TradingCurrency = 1245;
160
+ const int SecondaryHighLimitPrice = 1230;
161
+ const int OrderAvgPx = 799;
162
+ const int PosAmtType = 707;
163
+ const int ResetSeqNumFlag = 141;
164
+ const int NoHops = 627;
165
+ const int CollInquiryResult = 946;
166
+ const int StartDate = 916;
167
+ const int CollAsgnRespType = 905;
168
+ const int OrderBookingQty = 800;
169
+ const int NoQuoteQualifiers = 735;
170
+ const int UnsolicitedIndicator = 325;
171
+ const int RefCstmApplVerID = 1131;
172
+ const int SideExecID = 1427;
173
+ const int RejectText = 1328;
174
+ const int ExchangeSpecialInstructions = 1139;
175
+ const int TradeID = 1003;
176
+ const int RndPx = 991;
177
+ const int QuoteEntryRejectReason = 368;
178
+ const int OrderCapacity = 528;
179
+ const int SideLastQty = 1009;
180
+ const int DerivativeUnitOfMeasure = 1269;
181
+ const int NoLegAllocs = 670;
182
+ const int QuoteAckStatus = 297;
183
+ const int SecondaryFirmTradeID = 1042;
184
+ const int UserRequestType = 924;
185
+ const int SecondaryTrdType = 855;
186
+ const int TradeReportTransType = 487;
187
+ const int AdvSide = 4;
188
+ const int DerivativeSecuritySubType = 1250;
189
+ const int TriggerTradingSessionSubID = 1114;
190
+ const int TradeLinkID = 820;
191
+ const int LegBenchmarkPrice = 679;
192
+ const int HopRefID = 630;
193
+ const int Designation = 494;
194
+ const int TradeRequestID = 568;
195
+ const int LegFlowScheduleType = 1440;
196
+ const int LegPriceUnitOfMeasure = 1421;
197
+ const int Nested4PartyIDSource = 1416;
198
+ const int CoveredOrUncovered = 203;
199
+ const int AcctIDSource = 660;
200
+ const int MktOfferPx = 646;
201
+ const int NoCapacities = 862;
202
+ const int TradeRequestType = 569;
203
+ const int NoNestedPartyIDs = 539;
204
+ const int TradSesStatus = 340;
205
+ const int UnderlyingNotionalPercentageOutstanding = 1455;
206
+ const int ApplLastSeqNum = 1350;
207
+ const int PegPriceType = 1094;
208
+ const int StrategyParameterName = 958;
209
+ const int StreamAsgnRejReason = 1502;
210
+ const int MatchIncrement = 1089;
211
+ const int Nested3PartyRole = 951;
212
+ const int UnderlyingPx = 810;
213
+ const int PriceImprovement = 639;
214
+ const int ValuationMethod = 1197;
215
+ const int DerivativeSecurityID = 1216;
216
+ const int NoExpiration = 981;
217
+ const int TargetCompID = 56;
218
+ const int MDEntryBuyer = 288;
219
+ const int NoDerivativeInstrumentPartySubIDs = 1296;
220
+ const int NoMaturityRules = 1236;
221
+ const int QuoteMsgID = 1166;
222
+ const int TriggerType = 1100;
223
+ const int PriceProtectionScope = 1092;
224
+ const int TotNumAssignmentReports = 832;
225
+ const int ContraLegRefID = 655;
226
+ const int TradeReportRejectReason = 751;
227
+ const int TradeReportRefID = 572;
228
+ const int SecurityListType = 1470;
229
+ const int DerivativeSecurityIDSource = 1217;
230
+ const int AssignmentUnit = 745;
231
+ const int TradeReportID = 571;
232
+ const int NoRpts = 82;
233
+ const int LegBenchmarkPriceType = 680;
234
+ const int EncodedSubjectLen = 356;
235
+ const int SecurityXML = 1185;
236
+ const int LegReportID = 990;
237
+ const int Nested3PartySubIDType = 954;
238
+ const int BenchmarkSecurityIDSource = 761;
239
+ const int QuoteRejectReason = 300;
240
+ const int HeartBtInt = 108;
241
+ const int BidForwardPoints = 189;
242
+ const int PossResend = 97;
243
+ const int Symbol = 55;
244
+ const int EncodedUnderlyingSecurityDesc = 365;
245
+ const int MarketReportID = 1394;
246
+ const int DiscretionPrice = 845;
247
+ const int ContAmtValue = 520;
248
+ const int QuantityType = 465;
249
+ const int ComplexEventPriceBoundaryMethod = 1487;
250
+ const int ImpliedMarketIndicator = 1144;
251
+ const int AllocClearingFeeIndicator = 1136;
252
+ const int QuoteRequestType = 303;
253
+ const int SecurityRequestResult = 560;
254
+ const int OrderRestrictions = 529;
255
+ const int NoSideTrdRegTS = 1016;
256
+ const int Text = 58;
257
+ const int EncodedTextLen = 354;
258
+ const int ListExecInstType = 433;
259
+ const int SecondaryOrderID = 198;
260
+ const int ExecBroker = 76;
261
+ const int SecurityXMLLen = 1184;
262
+ const int ApplSeqNum = 1181;
263
+ const int MaxTradeVol = 1140;
264
+ const int OfferSwapPoints = 1066;
265
+ const int SettlPartySubIDType = 786;
266
+ const int DistribPaymentMethod = 477;
267
+ const int TotalAffectedOrders = 533;
268
+ const int StrikeIncrement = 1204;
269
+ const int OrderHandlingInstSource = 1032;
270
+ const int CopyMsgIndicator = 797;
271
+ const int NoDlvyInst = 85;
272
+ const int QuoteEntryID = 299;
273
+ const int AffirmStatus = 940;
274
+ const int MailingInst = 482;
275
+ const int OfferSize = 135;
276
+ const int LegSecurityType = 609;
277
+ const int OrigCustOrderCapacity = 1432;
278
+ const int AllocMethod = 1002;
279
+ const int QuantityDate = 976;
280
+ const int TargetStrategyPerformance = 850;
281
+ const int CardExpDate = 490;
282
+ const int ConfirmID = 664;
283
+ const int StandInstDbName = 170;
284
+ const int DayOrderQty = 424;
285
+ const int HighLimitPrice = 1149;
286
+ const int FirmTradeID = 1041;
287
+ const int SecondaryIndividualAllocID = 989;
288
+ const int AgreementDesc = 913;
289
+ const int MassCancelResponse = 531;
290
+ const int LegSettlCurrency = 675;
291
+ const int Commission = 12;
292
+ const int StreamAsgnReqType = 1498;
293
+ const int BidSwapPoints = 1065;
294
+ const int NoSettlPartyIDs = 781;
295
+ const int SymbolSfx = 65;
296
+ const int BusinessRejectRefID = 379;
297
+ const int Price2 = 640;
298
+ const int FillLiquidityInd = 1443;
299
+ const int MassActionReportID = 1369;
300
+ const int DerivativeIssuer = 1275;
301
+ const int ExDestinationIDSource = 1133;
302
+ const int CollRespID = 904;
303
+ const int SecurityListRequestType = 559;
304
+ const int EncodedLegSecurityDesc = 622;
305
+ const int UnderlyingSettlementStatus = 988;
306
+ const int SecurityAltID = 455;
307
+ const int RegistRefID = 508;
308
+ const int DerivativePriceQuoteMethod = 1318;
309
+ const int OrderDelay = 1428;
310
+ const int NoNotAffectedOrders = 1370;
311
+ const int Nested3PartyID = 949;
312
+ const int CollAsgnReason = 895;
313
+ const int TotalVolumeTradedTime = 450;
314
+ const int SecurityExchange = 207;
315
+ const int SettlPriceType = 731;
316
+ const int UnitOfMeasureQty = 1147;
317
+ const int UserRequestID = 923;
318
+ const int LastParPx = 669;
319
+ const int EndMaturityMonthYear = 1226;
320
+ const int DealingCapacity = 1048;
321
+ const int PrevClosePx = 140;
322
+ const int TradeInputDevice = 579;
323
+ const int DayCumQty = 425;
324
+ const int SecuritySettlAgentAcctNum = 178;
325
+ const int LegCurrency = 556;
326
+ const int EncryptedNewPassword = 1404;
327
+ const int DerivativeMinPriceIncrementAmount = 1268;
328
+ const int NoNested3PartySubIDs = 952;
329
+ const int RefSubID = 931;
330
+ const int SettlPartyRole = 784;
331
+ const int CashDistribAgentName = 498;
332
+ const int LegContractMultiplier = 614;
333
+ const int ProgPeriodInterval = 415;
334
+ const int LegSettlType = 587;
335
+ const int OnBehalfOfLocationID = 144;
336
+ const int OnBehalfOfSubID = 116;
337
+ const int ComplexEventEndTime = 1496;
338
+ const int RateSourceType = 1447;
339
+ const int DerivativeStateOrProvinceOfIssue = 1259;
340
+ const int TradeLegRefID = 824;
341
+ const int RelSymTransactTime = 1504;
342
+ const int NoComplexEventTimes = 1494;
343
+ const int LegCalculatedCcyLastQty = 1074;
344
+ const int Nested3PartyIDSource = 950;
345
+ const int DatedDate = 873;
346
+ const int SettlInstID = 162;
347
+ const int OpenInterest = 746;
348
+ const int UnderlyingContractMultiplier = 436;
349
+ const int TotQuoteEntries = 304;
350
+ const int TotNoCxldQuotes = 1168;
351
+ const int AggregatedBook = 266;
352
+ const int PaymentRef = 476;
353
+ const int PaymentDate = 504;
354
+ const int OrderPercent = 516;
355
+ const int PosQtyStatus = 706;
356
+ const int NoNested4PartySubIDs = 1413;
357
+ const int PrivateQuote = 1171;
358
+ const int SecondaryTradeID = 1040;
359
+ const int SecuritySettlAgentContactPhone = 181;
360
+ const int EncodedMktSegmDescLen = 1397;
361
+ const int SideCurrency = 1154;
362
+ const int LegQty = 687;
363
+ const int MsgType = 35;
364
+ const int NoTradingSessions = 386;
365
+ const int IOIid = 23;
366
+ const int MultiLegReportingType = 442;
367
+ const int IDSource = 22;
368
+ const int LegStipulationType = 688;
369
+ const int DerivativeContractMultiplierUnit = 1438;
370
+ const int MarketSegmentID = 1300;
371
+ const int OrdStatus = 39;
372
+ const int MaturityDate = 541;
373
+ const int ApplTotalMessageCount = 1349;
374
+ const int InstrumentPartySubID = 1053;
375
+ const int CustomerOrFirm = 204;
376
+ const int AdjustmentType = 718;
377
+ const int UnderlyingInstrumentPartyID = 1059;
378
+ const int AsOfIndicator = 1015;
379
+ const int QuoteStatusReqID = 649;
380
+ const int LegPositionEffect = 564;
381
+ const int MDEntryPx = 270;
382
+ const int MassActionScope = 1374;
383
+ const int ReportedPxDiff = 1134;
384
+ const int UnderlyingSettlementDate = 987;
385
+ const int NoNestedPartySubIDs = 804;
386
+ const int AllocReportRefID = 795;
387
+ const int Concession = 238;
388
+ const int EncodedSecurityDesc = 351;
389
+ const int ExecRefID = 19;
390
+ const int VenueType = 1430;
391
+ const int MassActionType = 1373;
392
+ const int PosMaintResult = 723;
393
+ const int IOIShares = 27;
394
+ const int BenchmarkSecurityID = 699;
395
+ const int LegLastQty = 1418;
396
+ const int AllocSettlCurrency = 736;
397
+ const int LegCountryOfIssue = 596;
398
+ const int DerivativeSecurityXML = 1283;
399
+ const int StrikeRuleID = 1223;
400
+ const int RefCompID = 930;
401
+ const int SettlCurrOfferFxRate = 657;
402
+ const int OfferYield = 634;
403
+ const int TargetPartyIDSource = 1463;
404
+ const int EncryptedNewPasswordLen = 1403;
405
+ const int NoPositions = 702;
406
+ const int TotalAccruedInterestAmt = 540;
407
+ const int UnderlyingOptAttribute = 317;
408
+ const int DerivativeInstrAttribValue = 1314;
409
+ const int InstrumentPartyIDSource = 1050;
410
+ const int PegOffsetType = 836;
411
+ const int MassCancelRejectReason = 532;
412
+ const int ResponseTransportType = 725;
413
+ const int LegSecurityIDSource = 603;
414
+ const int BasisFeaturePrice = 260;
415
+ const int CouponPaymentDate = 224;
416
+ const int TradSesStatusRejReason = 567;
417
+ const int UnderlyingDetachmentPoint = 1460;
418
+ const int MaturityRuleID = 1222;
419
+ const int UnderlyingRepoCollateralSecurityType = 243;
420
+ const int NoTimeInForceRules = 1239;
421
+ const int NoRootPartySubIDs = 1120;
422
+ const int DisplayMinIncr = 1087;
423
+ const int TrdRegTimestampType = 770;
424
+ const int LegProduct = 607;
425
+ const int ApplVerID = 1128;
426
+ const int HandlInst = 21;
427
+ const int ListUpdateAction = 1324;
428
+ const int NestedInstrAttribValue = 1211;
429
+ const int TradingSessionSubID = 625;
430
+ const int RFQReqID = 644;
431
+ const int UnderlyingLegSymbolSfx = 1331;
432
+ const int LiquidityNumSecurities = 441;
433
+ const int NoMsgTypes = 384;
434
+ const int TradSesStartTime = 341;
435
+ const int MDEntryType = 269;
436
+ const int AgreementCurrency = 918;
437
+ const int PegMoveType = 835;
438
+ const int PegDifference = 211;
439
+ const int Spread = 218;
440
+ const int EncodedAllocTextLen = 360;
441
+ const int OutsideIndexPct = 407;
442
+ const int DerivFlexProductEligibilityIndicator = 1243;
443
+ const int AvgPxIndicator = 819;
444
+ const int NoIOIQualifiers = 199;
445
+ const int CancellationRights = 480;
446
+ const int ListSeqNo = 67;
447
+ const int CardIssNum = 491;
448
+ const int EncodedMktSegmDesc = 1398;
449
+ const int DerivativeEventType = 1287;
450
+ const int DerivativeMaturityMonthYear = 1251;
451
+ const int SideTradeReportID = 1005;
452
+ const int NoQuoteSets = 296;
453
+ const int Nested4PartySubIDType = 1411;
454
+ const int FillPx = 1364;
455
+ const int StrikeExerciseStyle = 1304;
456
+ const int DeskID = 284;
457
+ const int CrossPercent = 413;
458
+ const int MaturityMonthYear = 200;
459
+ const int ComplexEventPrice = 1486;
460
+ const int NoNewsRefIDs = 1475;
461
+ const int UnderlyingCapValue = 1038;
462
+ const int CPRegType = 876;
463
+ const int CashDistribAgentCode = 499;
464
+ const int ExecPriceType = 484;
465
+ const int LegAllocID = 1366;
466
+ const int MDEntryTime = 273;
467
+ const int TotalNumSecurities = 393;
468
+ const int AllocSettlInstType = 780;
469
+ const int TargetPartyID = 1462;
470
+ const int DerivativeStrikeCurrency = 1262;
471
+ const int StatsType = 1176;
472
+ const int ApplExtID = 1156;
473
+ const int SettlementCycleNo = 1153;
474
+ const int UnderlyingStrikeCurrency = 941;
475
+ const int TradSesMode = 339;
476
+ const int SettlInstSource = 165;
477
+ const int UnderlyingLegSecurityDesc = 1392;
478
+ const int NoDerivativeInstrumentParties = 1292;
479
+ const int DerivativeEventTime = 1289;
480
+ const int TickIncrement = 1208;
481
+ const int UndlyInstrumentPartyID = 1059;
482
+ const int NoUndlyInstrumentParties = 1058;
483
+ const int ExpType = 982;
484
+ const int SecondaryClOrdID = 526;
485
+ const int SettlInstTransType = 163;
486
+ const int SideComplianceID = 659;
487
+ const int TradeRequestResult = 749;
488
+ const int OrigPosReqRefID = 713;
489
+ const int OrigCrossID = 551;
490
+ const int TradeInputSource = 578;
491
+ const int OrderQty2 = 192;
492
+ const int TestMessageIndicator = 464;
493
+ const int DerivativeEventDate = 1288;
494
+ const int SideGrossTradeAmt = 1072;
495
+ const int PeggedPrice = 839;
496
+ const int ExpirationCycle = 827;
497
+ const int AllocCancReplaceReason = 796;
498
+ const int CxlRejReason = 102;
499
+ const int BeginString = 8;
500
+ const int DeliverToSubID = 129;
501
+ const int LegPriceUnitOfMeasureQty = 1422;
502
+ const int NoCollInquiryQualifier = 938;
503
+ const int OfferPx = 133;
504
+ const int TotalVolumeTradedDate = 449;
505
+ const int NoContAmts = 518;
506
+ const int MinOfferSize = 648;
507
+ const int AvgParPx = 860;
508
+ const int LegFactor = 253;
509
+ const int RespondentType = 1172;
510
+ const int DisplayLowQty = 1085;
511
+ const int DKReason = 127;
512
+ const int BenchmarkPrice = 662;
513
+ const int ListID = 66;
514
+ const int LegSecurityAltID = 605;
515
+ const int PositionEffect = 77;
516
+ const int TriggerAction = 1101;
517
+ const int RefOrderID = 1080;
518
+ const int ClearingInstruction = 577;
519
+ const int SettlInstCode = 175;
520
+ const int NumDaysInterest = 157;
521
+ const int OpenCloseSettlFlag = 286;
522
+ const int NoComplexEventDates = 1491;
523
+ const int DerivativeEncodedIssuerLen = 1277;
524
+ const int StrikeMultiplier = 967;
525
+ const int DiscretionMoveType = 841;
526
+ const int ListNoOrds = 68;
527
+ const int PegSymbol = 1098;
528
+ const int DayAvgPx = 426;
529
+ const int Headline = 148;
530
+ const int NestedPartySubID = 545;
531
+ const int CardIssNo = 491;
532
+ const int OptAttribute = 206;
533
+ const int LastForwardPoints2 = 641;
534
+ const int MDUpdateType = 265;
535
+ const int TickDirection = 274;
536
+ const int LegRedemptionDate = 254;
537
+ const int StrikePrice = 202;
538
+ const int EncodedIssuer = 349;
539
+ const int YieldType = 235;
540
+ const int TradingReferencePrice = 1150;
541
+ const int MDEntrySpotRate = 1026;
542
+ const int ParticipationRate = 849;
543
+ const int PegScope = 840;
544
+ const int InterestAtMaturity = 738;
545
+ const int LegIndividualAllocID = 672;
546
+ const int AllowableOneSidednessValue = 766;
547
+ const int CashSettlAgentName = 182;
548
+ const int ContraTradeQty = 437;
549
+ const int LegMaturityTime = 1212;
550
+ const int SettlDeliveryType = 172;
551
+ const int SecondaryPriceLimitType = 1305;
552
+ const int MidPx = 631;
553
+ const int AvgPx = 6;
554
+ const int DiscretionLimitType = 843;
555
+ const int StrikeTime = 443;
556
+ const int SettlSessSubID = 717;
557
+ const int MailingDtls = 474;
558
+ const int BidID = 390;
559
+ const int ExerciseMethod = 747;
560
+ const int CommCurrency = 479;
561
+ const int NoSettlOblig = 1165;
562
+ const int MaxPriceVariation = 1143;
563
+ const int WorkingIndicator = 636;
564
+ const int CashSettlAgentAcctName = 185;
565
+ const int SellVolume = 331;
566
+ const int SideMultiLegReportingType = 752;
567
+ const int DerivativeEventText = 1291;
568
+ const int PegSecurityDesc = 1099;
569
+ const int AllocCustomerCapacity = 993;
570
+ const int ConfirmRejReason = 774;
571
+ const int BidRequestTransType = 374;
572
+ const int CashDistribAgentAcctNumber = 500;
573
+ const int LegExecInst = 1384;
574
+ const int CapPrice = 1199;
575
+ const int LegRepurchaseTerm = 251;
576
+ const int RegistAcctType = 493;
577
+ const int MassActionRejectReason = 1376;
578
+ const int DerivativePutOrCall = 1323;
579
+ const int StartMaturityMonthYear = 1241;
580
+ const int CollApplType = 1043;
581
+ const int NoUnderlyingAmounts = 984;
582
+ const int ConfirmType = 773;
583
+ const int LegMaturityMonthYear = 610;
584
+ const int RelatdSym = 46;
585
+ const int UnderlyingLegSecuritySubType = 1338;
586
+ const int NoUnderlyingSecurityAltID = 457;
587
+ const int MDQuoteType = 1070;
588
+ const int QtyType = 854;
589
+ const int QuoteRespType = 694;
590
+ const int IOINaturalFlag = 130;
591
+ const int BenchmarkCurvePoint = 222;
592
+ const int TradSesUpdateAction = 1327;
593
+ const int UnderlyingCashAmount = 973;
594
+ const int CollAsgnID = 902;
595
+ const int ExchangeRule = 825;
596
+ const int EncodedHeadline = 359;
597
+ const int RegistID = 513;
598
+ const int CrossID = 548;
599
+ const int NoExecs = 124;
600
+ const int DerivativeSecurityGroup = 1247;
601
+ const int SecondaryDisplayQty = 1082;
602
+ const int RefMsgType = 372;
603
+ const int StandInstDbID = 171;
604
+ const int EncodedLegSecurityDescLen = 621;
605
+ const int DerivativeEventPx = 1290;
606
+ const int SettlObligSource = 1164;
607
+ const int TrdSubType = 829;
608
+ const int EncodedUnderlyingIssuerLen = 362;
609
+ const int ExecTransType = 20;
610
+ const int BeginSeqNo = 7;
611
+ const int DayBookingInst = 589;
612
+ const int FlowScheduleType = 1439;
613
+ const int MDOriginType = 1024;
614
+ const int CollInquiryStatus = 945;
615
+ const int NoInstrAttrib = 870;
616
+ const int RegistEmail = 511;
617
+ const int StreamAsgnReqID = 1497;
618
+ const int CPProgram = 875;
619
+ const int ConfirmReqID = 859;
620
+ const int AltMDSourceID = 817;
621
+ const int NoOrders = 73;
622
+ const int CashDistribAgentAcctName = 502;
623
+ const int UndlyInstrumentPartyIDSource = 1060;
624
+ const int UnderlyingSettlMethod = 1039;
625
+ const int NoMDEntryTypes = 267;
626
+ const int MDEntryForwardPoints = 1027;
627
+ const int PosReqType = 724;
628
+ const int MassStatusReqType = 585;
629
+ const int TradeOriginationDate = 229;
630
+ const int SettlPrice = 730;
631
+ const int SecuritySettlAgentAcctName = 179;
632
+ const int NoDerivativeEvents = 1286;
633
+ const int UnderlyingEndPrice = 883;
634
+ const int SubscriptionRequestType = 263;
635
+ const int TotalNumSecurityTypes = 557;
636
+ const int NewsCategory = 1473;
637
+ const int UnderlyingLegPutOrCall = 1343;
638
+ const int URLLink = 149;
639
+ const int NoInstrumentPartySubIDs = 1052;
640
+ const int UnderlyingCurrentValue = 885;
641
+ const int InterestAccrualDate = 874;
642
+ const int FutSettDate2 = 193;
643
+ const int NoClearingInstructions = 576;
644
+ const int UnderlyingCurrency = 318;
645
+ const int LegInterestAccrualDate = 956;
646
+ const int NewPassword = 925;
647
+ const int RedemptionDate = 240;
648
+ const int RefApplLastSeqNum = 1357;
649
+ const int StartCash = 921;
650
+ const int MaxMessageSize = 383;
651
+ const int OfferForwardPoints = 191;
652
+ const int IOIQty = 27;
653
+ const int LastQty = 32;
654
+ const int ApplResponseError = 1354;
655
+ const int UnderlyingLegSecurityType = 1337;
656
+ const int DerivativePriceUnitOfMeasure = 1315;
657
+ const int TriggerPriceDirection = 1109;
658
+ const int PositionCurrency = 1055;
659
+ const int MessageEventSource = 1011;
660
+ const int CollInquiryID = 909;
661
+ const int UnderlyingStartValue = 884;
662
+ const int LastLiquidityInd = 851;
663
+ const int SecurityID = 48;
664
+ const int NoMDEntries = 268;
665
+ const int StrikePriceDeterminationMethod = 1478;
666
+ const int EndDate = 917;
667
+ const int CashOutstanding = 901;
668
+ const int MDReqID = 262;
669
+ const int IOIRefID = 26;
670
+ const int TargetStrategy = 847;
671
+ const int ConfirmRefID = 772;
672
+ const int SellerDays = 287;
673
+ const int DueToRelated = 329;
674
+ const int SecondaryTradingReferencePrice = 1240;
675
+ const int NoMDFeedTypes = 1141;
676
+ const int UnderlyingInstrumentPartySubIDType = 1064;
677
+ const int TradSesCloseTime = 344;
678
+ const int ContractSettlMonth = 667;
679
+ const int DerivativeStrikePrice = 1261;
680
+ const int TriggerSecurityDesc = 1106;
681
+ const int UnderlyingCashType = 974;
682
+ const int NoMiscFees = 136;
683
+ const int CustOrderCapacity = 582;
684
+ const int LegAllocSettlCurrency = 1367;
685
+ const int UnderlyingAdjustedQuantity = 1044;
686
+ const int OwnershipType = 517;
687
+ const int MaxShow = 210;
688
+ const int LegSecurityID = 602;
689
+ const int DerivativeSecurityDesc = 1279;
690
+ const int UnitOfMeasure = 996;
691
+ const int Quantity = 53;
692
+ const int NewsID = 1472;
693
+ const int UndlyInstrumentPartySubIDType = 1064;
694
+ const int SettleOnOpenFlag = 966;
695
+ const int LastUpdateTime = 779;
696
+ const int RepurchaseRate = 227;
697
+ const int RepurchaseTerm = 226;
698
+ const int NestedPartyRole = 538;
699
+ const int SecondaryExecID = 527;
700
+ const int Pool = 691;
701
+ const int NoTickRules = 1205;
702
+ const int Volatility = 1188;
703
+ const int PctAtRisk = 869;
704
+ const int UnderlyingSecurityExchange = 308;
705
+ const int LegStrikePrice = 612;
706
+ const int SettlmntTyp = 63;
707
+ const int TradePublishIndicator = 1390;
708
+ const int ApplResponseType = 1348;
709
+ const int MDSubBookType = 1173;
710
+ const int Username = 553;
711
+ const int StandInstDbType = 169;
712
+ const int QuoteEntryStatus = 1167;
713
+ const int TriggerPriceType = 1107;
714
+ const int SideTrdSubTyp = 1008;
715
+ const int UnderlyingTradingSessionSubID = 823;
716
+ const int SettlInstReqRejCode = 792;
717
+ const int MktBidPx = 645;
718
+ const int UnderlyingLegSymbol = 1330;
719
+ const int StrikeValue = 968;
720
+ const int Urgency = 61;
721
+ const int AllocID = 70;
722
+ const int UnderlyingDeliveryAmount = 1037;
723
+ const int SideQty = 1009;
724
+ const int CollAsgnTransType = 903;
725
+ const int ThresholdAmount = 834;
726
+ const int DefBidSize = 293;
727
+ const int LegStateOrProvinceOfIssue = 597;
728
+ const int PaymentMethod = 492;
729
+ const int UnderlyingLegOptAttribute = 1391;
730
+ const int LegVolatility = 1379;
731
+ const int DerivativeInstrAttribType = 1313;
732
+ const int DerivativeUnitOfMeasureQty = 1270;
733
+ const int NoStatsIndicators = 1175;
734
+ const int TriggerPriceTypeScope = 1108;
735
+ const int LastNetworkResponseID = 934;
736
+ const int UnderlyingSettlPriceType = 733;
737
+ const int ApplReportID = 1356;
738
+ const int PegLimitType = 837;
739
+ const int ExecID = 17;
740
+ const int Side = 54;
741
+ const int UnderlyingLastPx = 651;
742
+ const int MarketDepth = 264;
743
+ const int DiscretionOffset = 389;
744
+ const int ContAmtType = 519;
745
+ const int MiscFeeCurr = 138;
746
+ const int AttachmentPoint = 1457;
747
+ const int OrderCategory = 1115;
748
+ const int AdvTransType = 5;
749
+ const int WtAverageLiquidity = 410;
750
+ const int QuoteSetValidUntilTime = 367;
751
+ const int NoNested4PartyIDs = 1414;
752
+ const int LegPutOrCall = 1358;
753
+ const int UserStatusText = 927;
754
+ const int Nested2PartySubID = 760;
755
+ const int EFPTrackingError = 405;
756
+ const int SideLiquidityInd = 1444;
757
+ const int DerivativeMinPriceIncrement = 1267;
758
+ const int PublishTrdIndicator = 852;
759
+ const int InvestorCountryOfResidence = 475;
760
+ const int SideReasonCd = 1007;
761
+ const int MinPriceIncrement = 969;
762
+ const int SecuritySettlAgentContactName = 180;
763
+ const int SecurityResponseType = 323;
764
+ const int LegBenchmarkCurvePoint = 678;
765
+ const int ClearingFirm = 439;
766
+ const int SessionStatus = 1409;
767
+ const int TriggerSecurityID = 1104;
768
+ const int TotNoAllocs = 892;
769
+ const int NoAltMDSource = 816;
770
+ const int AllocAccountType = 798;
771
+ const int LastPx = 31;
772
+ const int AllocTransType = 71;
773
+ const int TotNoQuoteEntries = 304;
774
+ const int MinBidSize = 647;
775
+ const int SettlBrkrCode = 174;
776
+ const int CardHolderName = 488;
777
+ const int ExpirationQtyType = 982;
778
+ const int EncodedUnderlyingSecurityDescLen = 364;
779
+ const int QuoteReqID = 131;
780
+ const int PriceUnitOfMeasure = 1191;
781
+ const int TZTransactTime = 1132;
782
+ const int AllocHandlInst = 209;
783
+ const int UnderlyingInstrumentPartyIDSource = 1060;
784
+ const int CurrencyRatio = 1382;
785
+ const int RefreshQty = 1088;
786
+ const int TradeRequestStatus = 750;
787
+ const int TrdRepIndicator = 1389;
788
+ const int MiscFeeAmt = 137;
789
+ const int TradSesOpenTime = 342;
790
+ const int PreallocMethod = 591;
791
+ const int TaxAdvantageType = 495;
792
+ const int MessageEncoding = 347;
793
+ const int NoPartySubIDs = 802;
794
+ const int SettlInstReqID = 791;
795
+ const int LegRepoCollateralSecurityType = 250;
796
+ const int AffectedSecondaryOrderID = 536;
797
+ const int DerivativeMaturityTime = 1253;
798
+ const int ExpireTime = 126;
799
+ const int UnderlyingFactor = 246;
800
+ const int OrigOrdModTime = 586;
801
+ const int NoTrdRepIndicators = 1387;
802
+ const int DerivativeMaturityDate = 1252;
803
+ const int DerivativeCFICode = 1248;
804
+ const int Nested2PartySubIDType = 807;
805
+ const int LegIOIQty = 682;
806
+ const int ExpireDate = 432;
807
+ const int NoMatchRules = 1235;
808
+ const int ApplEndSeqNum = 1183;
809
+ const int EventPx = 867;
810
+ const int AsgnRptID = 833;
811
+ const int TimeInForce = 59;
812
+ const int LowPx = 333;
813
+ const int IOIQualifier = 104;
814
+ const int WaveNo = 105;
815
+ const int StrikePriceBoundaryMethod = 1479;
816
+ const int DerivativeIssueDate = 1276;
817
+ const int MiscFeeType = 139;
818
+ const int QuoteID = 117;
819
+ const int DerivativeInstrumentPartyIDSource = 1294;
820
+ const int SettlObligID = 1161;
821
+ const int InstrAttribValue = 872;
822
+ const int LiquidityValue = 404;
823
+ const int SecurityIDSource = 22;
824
+ const int NewsRefType = 1477;
825
+ const int NoOfLegUnderlyings = 1342;
826
+ const int DerivativeEncodedSecurityDesc = 1281;
827
+ const int TriggerOrderType = 1111;
828
+ const int UnderlyingDirtyPrice = 882;
829
+ const int CrossType = 549;
830
+ const int RepoCollateralSecurityType = 239;
831
+ const int Password = 554;
832
+ const int OpenCloseSettleFlag = 286;
833
+ const int Subject = 147;
834
+ const int RefApplReqID = 1433;
835
+ const int UnderlyingEndValue = 886;
836
+ const int NewSeqNo = 36;
837
+ const int OrigTradeHandlingInstr = 1124;
838
+ const int DisplayHighQty = 1086;
839
+ const int MDBookType = 1021;
840
+ const int MarginExcess = 899;
841
+ const int BasisPxType = 419;
842
+ const int DlvyInst = 86;
843
+ const int ComplianceID = 376;
844
+ const int EmailThreadID = 164;
845
+ const int ContAmtCurr = 521;
846
+ const int ComplexEventType = 1484;
847
+ const int MassActionResponse = 1375;
848
+ const int UnderlyingIssueDate = 242;
849
+ const int SecurityRequestType = 321;
850
+ const int AllocInterestAtMaturity = 741;
851
+ const int ListRejectReason = 1386;
852
+ const int DeskType = 1033;
853
+ const int SecondaryTradeReportID = 818;
854
+ const int SettlType = 63;
855
+ const int OpenClose = 77;
856
+ const int ContractMultiplierUnit = 1435;
857
+ const int SecondaryLowLimitPrice = 1221;
858
+ const int ExpQty = 983;
859
+ const int NetworkRequestID = 933;
860
+ const int TrdType = 828;
861
+ const int NoUnderlyings = 711;
862
+ const int MDMkt = 275;
863
+ const int LastMkt = 30;
864
+ const int RestructuringType = 1449;
865
+ const int NoStrikeRules = 1201;
866
+ const int ListName = 392;
867
+ const int ProgRptReqs = 414;
868
+ const int TradingSessionID = 336;
869
+ const int ListOrderStatus = 431;
870
+ const int RegistStatus = 506;
871
+ const int PosAmt = 708;
872
+ const int UnderlyingPriceDeterminationMethod = 1481;
873
+ const int NoUnderlyingStips = 887;
874
+ const int TradSesPreCloseTime = 343;
875
+ const int MassCancelRequestType = 530;
876
+ const int UnderlyingLegSecurityAltIDSource = 1336;
877
+ const int SettlPartyID = 782;
878
+ const int NoAffectedOrders = 534;
879
+ const int CashSettlAgentAcctNum = 184;
880
+ const int UnderlyingLegMaturityMonthYear = 1339;
881
+ const int NoLotTypeRules = 1234;
882
+ const int NoDates = 580;
883
+ const int CxlRejResponseTo = 434;
884
+ const int EffectiveTime = 168;
885
+ const int GrossTradeAmt = 381;
886
+ const int SecurityListDesc = 1467;
887
+ const int NotAffectedOrderID = 1371;
888
+ const int DerivativeStrikeValue = 1264;
889
+ const int NoPosAmt = 753;
890
+ const int LegCreditRating = 257;
891
+ const int BidForwardPoints2 = 642;
892
+ const int SettlDate = 64;
893
+ const int ClientID = 109;
894
+ const int QuoteCancelType = 298;
895
+ const int StipulationType = 233;
896
+ const int OutMainCntryUIndex = 412;
897
+ const int LegSettlmntTyp = 587;
898
+ const int DerivativeNTPositionLimit = 1274;
899
+ const int PriceQuoteMethod = 1196;
900
+ const int LowLimitPrice = 1148;
901
+ const int LegUnitOfMeasure = 999;
902
+ const int SessionRejectReason = 373;
903
+ const int DeliveryType = 919;
904
+ const int AllocPrice = 366;
905
+ const int NoBidComponents = 420;
906
+ const int QuoteQualifier = 695;
907
+ const int Scope = 546;
908
+ const int NoSecurityAltID = 454;
909
+ const int RootPartySubID = 1121;
910
+ const int DeliverToLocationID = 145;
911
+ const int DeleteReason = 285;
912
+ const int BidSpotRate = 188;
913
+ const int Nested4PartyID = 1415;
914
+ const int InViewOfCommon = 328;
915
+ const int UnderlyingSettlPrice = 732;
916
+ const int RegistRejReasonText = 496;
917
+ const int NoSides = 552;
918
+ const int LegAllocAccount = 671;
919
+ const int LegSecurityDesc = 620;
920
+ const int ClOrdLinkID = 583;
921
+ const int OrigSendingTime = 122;
922
+ const int EncodedLegIssuerLen = 618;
923
+ const int OrderID = 37;
924
+ const int SecurityType = 167;
925
+ const int RoundingDirection = 468;
926
+ const int FillExecID = 1363;
927
+ const int NoEvents = 864;
928
+ const int RoundLot = 561;
929
+ const int MDEntrySize = 271;
930
+ const int EncodedIssuerLen = 348;
931
+ const int DerivativePriceUnitOfMeasureQty = 1316;
932
+ const int TimeUnit = 997;
933
+ const int TotNoOrders = 68;
934
+ const int LegSwapType = 690;
935
+ const int IOITransType = 28;
936
+ const int RawDataLength = 95;
937
+ const int UnderlyingSecurityType = 310;
938
+ const int UnderlyingLegSecurityAltID = 1335;
939
+ const int SecurityReportID = 964;
940
+ const int TotNumReports = 911;
941
+ const int TotalNumPosReports = 727;
942
+ const int SecurityReqID = 320;
943
+ const int PosReqResult = 728;
944
+ const int LegOfferForwardPoints = 1068;
945
+ const int AllowableOneSidednessCurr = 767;
946
+ const int AffectedOrderID = 535;
947
+ const int UnderlyingCountryOfIssue = 592;
948
+ const int UnderlyingRepurchaseRate = 245;
949
+ const int LastMsgSeqNumProcessed = 369;
950
+ const int UnderlyingCFICode = 463;
951
+ const int DerivativeOptAttribute = 1265;
952
+ const int PegSecurityID = 1097;
953
+ const int HostCrossID = 961;
954
+ const int ExecInstValue = 1308;
955
+ const int DerivativeOptPayAmount = 1225;
956
+ const int UnderlyingCouponRate = 435;
957
+ const int SettlInstMode = 160;
958
+ const int SecurityAltIDSource = 456;
959
+ const int PreviouslyReported = 570;
960
+ const int RptSys = 1135;
961
+ const int NoNested2PartySubIDs = 806;
962
+ const int RefAllocID = 72;
963
+ const int DefOfferSize = 294;
964
+ const int ProductComplex = 1227;
965
+ const int CustOrderHandlingInst = 1031;
966
+ const int MDPriceLevel = 1023;
967
+ const int LegOptionRatio = 1017;
968
+ const int SecurityStatus = 965;
969
+ const int LegRefID = 654;
970
+ const int DividendYield = 1380;
971
+ const int DerivativeInstrumentPartySubIDType = 1298;
972
+ const int EndStrikePxRange = 1203;
973
+ const int DisplayQty = 1138;
974
+ const int LegSecuritySubType = 764;
975
+ const int ProcessCode = 81;
976
+ const int ExecInst = 18;
977
+ const int TradSesEndTime = 345;
978
+ const int OrigTime = 42;
979
+ const int ExecValuationPoint = 515;
980
+ const int ExecType = 150;
981
+ const int Nested4PartyRole = 1417;
982
+ const int MultilegModel = 1377;
983
+ const int SecurityGroup = 1151;
984
+ const int EventType = 865;
985
+ const int TradeAllocIndicator = 826;
986
+ const int YieldCalcDate = 701;
987
+ const int ValueOfFutures = 408;
988
+ const int LegSide = 624;
989
+ const int UserStatus = 926;
990
+ const int SideValue1 = 396;
991
+ const int CxlQty = 84;
992
+ const int SecurityResponseID = 322;
993
+ const int InstrRegistry = 543;
994
+ const int StreamAsgnRptID = 1501;
995
+ const int OrderDelayUnit = 1429;
996
+ const int LegCurrencyRatio = 1383;
997
+ const int EndTickPriceRange = 1207;
998
+ const int CollReqID = 894;
999
+ const int LegPool = 740;
1000
+ const int ShortQty = 705;
1001
+ const int SideValue2 = 397;
1002
+ const int TradedFlatSwitch = 258;
1003
+ const int MassStatusReqID = 584;
1004
+ const int ComplexEventEndDate = 1493;
1005
+ const int MarketID = 1301;
1006
+ const int OrigTradeDate = 1125;
1007
+ const int PreTradeAnonymity = 1091;
1008
+ const int TrdRptStatus = 939;
1009
+ const int DistribPercentage = 512;
1010
+ const int QuoteStatus = 297;
1011
+ const int ClearingAccount = 440;
1012
+ const int TrdMatchID = 880;
1013
+ const int OrderInputDevice = 821;
1014
+ const int SolicitedFlag = 377;
1015
+ const int TransactTime = 60;
1016
+ const int UnderlyingFlowScheduleType = 1441;
1017
+ const int UnderlyingStipValue = 889;
1018
+ const int NextExpectedMsgSeqNum = 789;
1019
+ const int BenchmarkCurveCurrency = 220;
1020
+ const int CFICode = 461;
1021
+ const int Factor = 228;
1022
+ const int LastShares = 32;
1023
+ const int EventTime = 1145;
1024
+ const int RootPartySubIDType = 1122;
1025
+ const int ShortSaleReason = 853;
1026
+ const int XmlData = 213;
1027
+ const int NoTargetPartyIDs = 1461;
1028
+ const int NoRootPartyIDs = 1116;
1029
+ const int EventDate = 866;
1030
+ const int PegRoundDirection = 838;
1031
+ const int LegSettlDate = 588;
1032
+ const int ModelType = 1434;
1033
+ const int DefaultVerIndicator = 1410;
1034
+ const int FuturesValuationMethod = 1197;
1035
+ const int SettlMethod = 1193;
1036
+ const int UnderlyingFXRate = 1045;
1037
+ const int ConfirmStatus = 665;
1038
+ const int LocateReqd = 114;
1039
+ const int PosMaintRptID = 721;
1040
+ const int Adjustment = 334;
1041
+ const int StreamAsgnType = 1617;
1042
+ const int LastRptRequested = 912;
1043
+ const int LocaleOfIssue = 472;
1044
+ const int SenderSubID = 50;
1045
+ const int HighPx = 332;
1046
+ const int AllocSettlCurrAmt = 737;
1047
+ const int ComplexEventPriceBoundaryPrecision = 1488;
1048
+ const int InstrumentPartyRole = 1051;
1049
+ const int YieldRedemptionPrice = 697;
1050
+ const int CumQty = 14;
1051
+ const int OrigClOrdID = 41;
1052
+ const int SettlSessID = 716;
1053
+ const int ParentMktSegmID = 1325;
1054
+ const int TradeReportType = 856;
1055
+ const int AvgPrxPrecision = 74;
1056
+ const int NoLegs = 555;
1057
+ const int UnderlyingSymbol = 311;
1058
+ const int ExerciseStyle = 1194;
1059
+ const int HaltReasonChar = 327;
1060
+ const int ExDestination = 100;
1061
+ const int DerivativeInstrmtAssignmentMethod = 1255;
1062
+ const int UnderlyingIDSource = 305;
1063
+ const int AdvId = 2;
1064
+ const int TransBkdTime = 483;
1065
+ const int LegLastPx = 637;
1066
+ const int AllocReportType = 794;
1067
+ const int RegistDtls = 509;
1068
+ const int AllocType = 626;
1069
+ const int QuoteRequestRejectReason = 658;
1070
+ const int UnderlyingUnitOfMeasure = 998;
1071
+ const int IndividualAllocID = 467;
1072
+ const int LegOfferPx = 684;
1073
+ const int LiquidityIndType = 409;
1074
+ const int HopSendingTime = 629;
1075
+ const int ApplResendFlag = 1352;
1076
+ const int DerivativeCapPrice = 1321;
1077
+ const int ComplexOptPayoutAmount = 1485;
1078
+ const int LanguageCode = 1474;
1079
+ const int SettlObligRefID = 1163;
1080
+ const int OrigTradeID = 1126;
1081
+ const int UnderlyingCollectAmount = 986;
1082
+ const int StatusValue = 928;
1083
+ const int OfferSpotRate = 190;
1084
+ const int PosType = 703;
1085
+ const int UnderlyingRedemptionDate = 247;
1086
+ const int SettlDepositoryCode = 173;
1087
+ const int StreamAsgnAckType = 1503;
1088
+ const int FloorPrice = 1200;
1089
+ const int UnderlyingPriceUnitOfMeasureQty = 1425;
1090
+ const int FeeMultiplier = 1329;
1091
+ const int UnderlyingMaturityTime = 1213;
1092
+ const int ApplID = 1180;
1093
+ const int LegGrossTradeAmt = 1075;
1094
+ const int MDEntryDate = 272;
1095
+ const int LegBenchmarkCurveCurrency = 676;
1096
+ const int OptPayoutAmount = 1195;
1097
+ const int MiscFeeBasis = 891;
1098
+ const int ValidUntilTime = 62;
1099
+ const int OrdType = 40;
1100
+ const int AdvRefID = 3;
1101
+ const int HopCompID = 628;
1102
+ const int PosMaintRptRefID = 714;
1103
+ const int LegStipulationValue = 689;
1104
+ const int MatchType = 574;
1105
+ const int OptPayoutType = 1482;
1106
+ const int UnderlyingPriceUnitOfMeasure = 1424;
1107
+ const int MarketUpdateAction = 1395;
1108
+ const int CollAsgnRejectReason = 906;
1109
+ const int PeggedRefPrice = 1095;
1110
+ const int IndividualAllocType = 992;
1111
+ const int EndCash = 922;
1112
+ const int EventText = 868;
1113
+ const int ExDate = 230;
1114
+ const int NestedPartyIDSource = 525;
1115
+ const int GTBookingInst = 427;
1116
+ const int DerivativeValuationMethod = 1319;
1117
+ const int NumberOfOrders = 346;
1118
+ const int TrdRepPartyRole = 1388;
1119
+ const int TriggerPrice = 1102;
1120
+ const int MDReportID = 963;
1121
+ const int SecondaryAllocID = 793;
1122
+ const int LeavesQty = 151;
1123
+ const int CardStartDate = 503;
1124
+ const int LegCoveredOrUncovered = 565;
1125
+ const int PutOrCall = 201;
1126
+ const int MatchAlgorithm = 1142;
1127
+ const int CalculatedCcyLastQty = 1056;
1128
+ const int FundRenewWaiv = 497;
1129
+ const int SecuritySettlAgentName = 176;
1130
+ const int BidDescriptor = 400;
1131
+ const int MDStreamID = 1500;
1132
+ const int NoAsgnReqs = 1499;
1133
+ const int NotionalPercentageOutstanding = 1451;
1134
+ const int NoSettlInst = 778;
1135
+ const int SettlInstMsgID = 777;
1136
+ const int ForexReq = 121;
1137
+ const int TradSesReqID = 335;
1138
+ const int UnderlyingLegStrikePrice = 1340;
1139
+ const int TickRuleType = 1209;
1140
+ const int InstrmtAssignmentMethod = 1049;
1141
+ const int DiscretionOffsetType = 842;
1142
+ const int ConfirmTransType = 666;
1143
+ const int TotalTakedown = 237;
1144
+ const int ResponseDestination = 726;
1145
+ const int MDSecSizeType = 1178;
1146
+ const int InstrumentPartySubIDType = 1054;
1147
+ const int LegTimeUnit = 1001;
1148
+ const int TransferReason = 830;
1149
+ const int ApplQueueMax = 812;
1150
+ const int DiscretionOffsetValue = 389;
1151
+ const int BookingRefID = 466;
1152
+ const int LegBidPx = 681;
1153
+ const int TradSesEvent = 1368;
1154
+ const int DerivativeProduct = 1246;
1155
+ const int RootPartyRole = 1119;
1156
+ const int DlvyInstType = 787;
1157
+ const int NoLinesOfText = 33;
1158
+ const int PosReqID = 710;
1159
+ const int LegSecurityAltIDSource = 606;
1160
+ const int EncodedSubject = 357;
1161
+ const int ContraBroker = 375;
1162
+ const int TradeCondition = 277;
1163
+ const int PartyID = 448;
1164
+ const int MDEntryID = 278;
1165
+ const int UnderlyingLegSecurityExchange = 1341;
1166
+ const int PriceLimitType = 1306;
1167
+ const int TriggerSecurityIDSource = 1105;
1168
+ const int NoUndlyInstrumentPartySubIDs = 1062;
1169
+ const int ClientBidID = 391;
1170
+ const int NetChgPrevDay = 451;
1171
+ const int DefaultApplVerID = 1137;
1172
+ const int IOIID = 23;
1173
+ const int SpreadToBenchmark = 218;
1174
+ const int CommType = 13;
1175
+ const int RegistRejReasonCode = 507;
1176
+ const int SideTimeInForce = 962;
1177
+ const int TrdRegTimestamp = 769;
1178
+ const int FinancialStatus = 291;
1179
+ const int NoTrades = 897;
1180
+ const int LastFragment = 893;
1181
+ const int PartySubID = 523;
1182
+ const int AllocQty = 80;
1183
+ const int NotifyBrokerOfCredit = 208;
1184
+ const int SideTrdRegTimestampType = 1013;
1185
+ const int AgreementDate = 915;
1186
+ const int PartySubIDType = 803;
1187
+ const int TotalNetValue = 900;
1188
+ const int AllocNoOrdersType = 857;
1189
+ const int AllocLinkID = 196;
1190
+ const int RoundingModulus = 469;
1191
+ const int OnBehalfOfCompID = 115;
1192
+ const int UnderlyingSecurityID = 309;
1193
+ const int SettlObligMsgID = 1160;
1194
+ const int PositionLimit = 970;
1195
+ const int SharedCommission = 858;
1196
+ const int AllowableOneSidednessPct = 765;
1197
+ const int AllocText = 161;
1198
+ const int EndSeqNo = 16;
1199
+ const int NoPartyIDs = 453;
1200
+ const int NoContraBrokers = 382;
1201
+ const int AllocLinkType = 197;
1202
+ const int UnderlyingAllocationPercent = 972;
1203
+ const int AllocAccruedInterestAmt = 742;
1204
+ const int EncodedSecurityListDesc = 1469;
1205
+ const int EncryptedPasswordLen = 1401;
1206
+ const int LegDividendYield = 1381;
1207
+ const int RefreshIndicator = 1187;
1208
+ const int SideSettlCurrency = 1155;
1209
+ const int UnderlyingSettlementType = 975;
1210
+ const int OrderCapacityQty = 863;
1211
+ const int LongQty = 704;
1212
+ const int DerivativeSettlMethod = 1317;
1213
+ const int TriggerTradingSessionID = 1113;
1214
+ const int DisplayMethod = 1084;
1215
+ const int RptSeq = 83;
1216
+ const int MDEntryOriginator = 282;
1217
+ const int LegInstrRegistry = 599;
1218
+ const int FillQty = 1365;
1219
+ const int PegSecurityIDSource = 1096;
1220
+ const int MaturityTime = 1079;
1221
+ const int MDFeedType = 1022;
1222
+ const int CollStatus = 910;
1223
+ const int UnderlyingSecuritySubType = 763;
1224
+ const int CstmApplVerID = 1129;
1225
+ const int DefaultApplExtID = 1407;
1226
+ const int NoDerivativeSecurityAltID = 1218;
1227
+ const int SideValueInd = 401;
1228
+ const int EncodedText = 355;
1229
+ const int Account = 1;
1230
+ const int TriggerNewPrice = 1110;
1231
+ const int UndlyInstrumentPartyRole = 1061;
1232
+ const int MsgDirection = 385;
1233
+ const int LegMaturityDate = 611;
1234
+ const int UnderlyingContractMultiplierUnit = 1437;
1235
+ const int InputSource = 979;
1236
+ const int MDUpdateAction = 279;
1237
+ const int MatchStatus = 573;
1238
+ const int RateSource = 1446;
1239
+ const int AllocPositionEffect = 1047;
1240
+ const int PartyIDSource = 447;
1241
+ const int EncodedUnderlyingIssuer = 363;
1242
+ const int EncryptedPassword = 1402;
1243
+ const int TriggerNewQty = 1112;
1244
+ const int LegLastForwardPoints = 1073;
1245
+ const int TotNumTradeReports = 748;
1246
+ const int RefApplVerID = 1130;
1247
+ const int LastSpotRate = 194;
1248
+ const int Price = 44;
1249
+ const int UnderlyingSecurityIDSource = 305;
1250
+ const int TotNoSecurityTypes = 557;
1251
+ const int ReportedPx = 861;
1252
+ const int LegSymbol = 600;
1253
+ const int LegIssuer = 617;
1254
+ const int RegistDetls = 509;
1255
+ const int UnderlyingLegSecurityID = 1332;
1256
+ const int MinLotSize = 1231;
1257
+ const int NumTickets = 395;
1258
+ const int LegLocaleOfIssue = 598;
1259
+ const int ExchangeForPhysical = 411;
1260
+ const int SecurityTradingEvent = 1174;
1261
+ const int MinPriceIncrementAmount = 1146;
1262
+ const int UnderlyingPayAmount = 985;
1263
+ const int SettlPartySubID = 785;
1264
+ const int AllocNetMoney = 154;
1265
+ const int UnderlyingMaturityDay = 314;
1266
+ const int NetworkResponseID = 932;
1267
+ const int NumBidders = 417;
1268
+ const int AllocAcctIDSource = 661;
1269
+ const int AllocAvgPx = 153;
1270
+ const int SecuritySettlAgentCode = 177;
1271
+ const int NoDistribInsts = 510;
1272
+ const int CustDirectedOrder = 1029;
1273
+ const int FairValue = 406;
1274
+ const int NoStrikes = 428;
1275
+ const int EncodedSecurityListDescLen = 1468;
1276
+ const int LegExerciseStyle = 1420;
1277
+ const int DerivativeSymbolSfx = 1215;
1278
+ const int NestedInstrAttribType = 1210;
1279
+ const int ContraTrader = 337;
1280
+ const int MDSecSize = 1179;
1281
+ const int NoOfSecSizes = 1177;
1282
+ const int CollAction = 944;
1283
+ const int UnderlyingLastQty = 652;
1284
+ const int PossDupFlag = 43;
1285
+ const int ListStatusType = 429;
1286
+ const int SideFillStationCd = 1006;
1287
+ const int StatusText = 929;
1288
+ const int BasisFeatureDate = 259;
1289
+ const int XmlDataLen = 212;
1290
+ const int UnderlyingMaturityDate = 542;
1291
+ const int GapFillFlag = 123;
1292
+ const int RefApplExtID = 1406;
1293
+ const int RefApplID = 1355;
1294
+ const int NoTradingSessionRules = 1309;
1295
+ const int SwapPoints = 1069;
1296
+ const int TargetStrategyParameters = 848;
1297
+ const int LastForwardPoints = 195;
1298
+ const int YieldRedemptionDate = 696;
1299
+ const int NoSettlDetails = 1158;
1300
+ const int TradeHandlingInstr = 1123;
1301
+ const int CashSettlAgentCode = 183;
1302
+ const int LegPriceType = 686;
1303
+ const int EncodedListExecInstLen = 352;
1304
+ const int TradSesMethod = 338;
1305
+ const int AgreementID = 914;
1306
+ const int CashDistribCurr = 478;
1307
+ const int BidPx = 132;
1308
+ const int TradeType = 418;
1309
+ const int EncodedSecurityDescLen = 350;
1310
+ const int ComplexEventCondition = 1490;
1311
+ const int EncryptedPasswordMethod = 1400;
1312
+ const int DerivativeSecurityAltID = 1219;
1313
+ const int TotNoAccQuotes = 1169;
1314
+ const int TimeBracket = 943;
1315
+ const int NoAllocs = 78;
1316
+ const int UnderlyingProduct = 462;
1317
+ const int BenchmarkCurveName = 221;
1318
+ const int UnderlyingSymbolSfx = 312;
1319
+ const int StrikePriceBoundaryPrecision = 1480;
1320
+ const int QuoteSetID = 302;
1321
+ const int CashMargin = 544;
1322
+ const int SettlObligTransType = 1162;
1323
+ const int LegNumber = 1152;
1324
+ const int DeskOrderHandlingInst = 1035;
1325
+ const int SettlPartyIDSource = 783;
1326
+ const int PriorSettlPrice = 734;
1327
+ const int NotAffOrigClOrdID = 1372;
1328
+ const int TradingSessionDesc = 1326;
1329
+ const int DerivativeFloorPrice = 1322;
1330
+ const int DerivativeSymbol = 1214;
1331
+ const int RiskFreeRate = 1190;
1332
+ const int PosTransType = 709;
1333
+ const int MsgSeqNum = 34;
1334
+ const int Signature = 89;
1335
+ const int Seniority = 1450;
1336
+ const int NoRateSources = 1445;
1337
+ const int PriceUnitOfMeasureQty = 1192;
1338
+ const int CollAsgnRefID = 907;
1339
+ const int BuyVolume = 330;
1340
+ const int SettlCurrFxRateCalc = 156;
1341
+ const int PosMaintStatus = 722;
1342
+ const int PriorSpreadIndicator = 720;
1343
+ const int Benchmark = 219;
1344
+ const int MaturityMonthYearFormat = 1303;
1345
+ const int UnderlyingTradingSessionID = 822;
1346
+ const int TotNoRelatedSym = 393;
1347
+ const int StateOrProvinceOfIssue = 471;
1348
+ const int DerivativeInstrRegistry = 1257;
1349
+ const int LegBidForwardPoints = 1067;
1350
+ const int ManualOrderIndicator = 1028;
1351
+ const int NetMoney = 118;
1352
+ const int LegalConfirm = 650;
1353
+ const int CountryOfIssue = 470;
1354
+ const int ApplReportType = 1426;
1355
+ const int RootPartyID = 1117;
1356
+ const int UnderlyingQty = 879;
1357
+ const int ApplQueueDepth = 813;
1358
+ const int StopPx = 99;
1359
+ const int ReportToExch = 113;
1360
+ const int ContraryInstructionIndicator = 719;
1361
+ const int EncodedListStatusTextLen = 445;
1362
+ const int DerivativeSecurityXMLSchema = 1284;
1363
+ const int NoRelatedSym = 146;
1364
+ const int AllocRejCode = 88;
1365
+ const int UnderlyingSecurityAltID = 458;
1366
+ const int RefOrdIDReason = 1431;
1367
+ const int DerivativeInstrumentPartyID = 1293;
1368
+ const int SecurityXMLSchema = 1186;
1369
+ const int RefOrderIDSource = 1081;
1370
+ const int NTPositionLimit = 971;
1371
+ const int EndAccruedInterestAmt = 920;
1372
+ const int AccruedInterestRate = 158;
1373
+ const int LastCapacity = 29;
1374
+ const int UnderlyingInstrumentPartySubID = 1063;
1375
+ const int NoFills = 1362;
1376
+ const int NoOrdTypeRules = 1237;
1377
+ const int InstrumentPartyID = 1019;
1378
+ const int MarginRatio = 898;
1379
+ const int RefTagID = 371;
1380
+ const int NoRoutingIDs = 215;
1381
+ const int CouponRate = 223;
1382
+ const int NoApplIDs = 1351;
1383
+ const int DerivativeContractSettlMonth = 1285;
1384
+ const int InstrAttribType = 871;
1385
+ const int Product = 460;
1386
+ const int AllocShares = 80;
1387
+ const int NoQuoteEntries = 295;
1388
+ const int DefaultCstmApplVerID = 1408;
1389
+ const int DerivativeListMethod = 1320;
1390
+ const int DerivativeSecurityXMLLen = 1282;
1391
+ const int LegDatedDate = 739;
1392
+ const int Nested2PartyIDSource = 758;
1393
+ const int UnderlyingInstrRegistry = 595;
1394
+ const int IssueDate = 225;
1395
+ const int SecurityTradingStatus = 326;
1396
+ const int LegOptAttribute = 613;
1397
+ const int MaxFloor = 111;
1398
+ const int DerivativeLocaleOfIssue = 1260;
1399
+ const int OptPayAmount = 1195;
1400
+ const int UnderlyingStipType = 888;
1401
+ const int Rule80A = 47;
1402
+ const int TotNoStrikes = 422;
1403
+ const int CorporateAction = 292;
1404
+ const int TerminationType = 788;
1405
+ const int LegCouponRate = 615;
1406
+ const int PosMaintAction = 712;
1407
+ const int NoSecurityTypes = 558;
1408
+ const int ComplexEventPriceTimeType = 1489;
1409
+ const int LastSwapPoints = 1071;
1410
+ const int UnderlyingFXRateCalc = 1046;
1411
+ const int ListStatusText = 444;
1412
+ const int OddLot = 575;
1413
+ const int BookingUnit = 590;
1414
+ const int LegAllocAcctIDSource = 674;
1415
+ const int OnBehalfOfSendingTime = 370;
1416
+ const int AllocStatus = 87;
1417
+ const int ReferencePage = 1448;
1418
+ const int DerivativeExerciseStyle = 1299;
1419
+ const int ApplBegSeqNum = 1182;
1420
+ const int CollRptID = 908;
1421
+ const int IncTaxInd = 416;
1422
+ const int NoBidDescriptors = 398;
1423
+ const int LegCouponPaymentDate = 248;
1424
+ const int NoUnderlyingLegSecurityAltID = 1334;
1425
+ const int ReversalIndicator = 700;
1426
+ const int CheckSum = 10;
1427
+ const int TargetSubID = 57;
1428
+ const int PosReqStatus = 729;
1429
+ const int PriorityIndicator = 638;
1430
+ const int UnderlyingLegCFICode = 1344;
1431
+ const int DerivativeTimeUnit = 1271;
1432
+ const int NoNested3PartyIDs = 948;
1433
+ const int LiquidityPctHigh = 403;
1434
+ const int MoneyLaunderingStatus = 481;
1435
+ const int Nested4PartySubID = 1412;
1436
+ const int DerivativeSecurityExchange = 1272;
1437
+ const int LotType = 1093;
1438
+ const int ContIntRptID = 977;
1439
+ const int QuoteCondition = 276;
1440
+ const int ComplexEventStartTime = 1495;
1441
+ const int NoComplexEvents = 1483;
1442
+ const int DerivativeContractMultiplier = 1266;
1443
+ const int DerivativeSecurityStatus = 1256;
1444
+ const int DerivativeProductComplex = 1228;
1445
+ const int TriggerSymbol = 1103;
1446
+ const int UnderlyingLocaleOfIssue = 594;
1447
+ const int SendingTime = 52;
1448
+ const int ComplexEventStartDate = 1492;
1449
+ const int UnderlyingRestructuringType = 1453;
1450
+ const int LegUnitOfMeasureQty = 1224;
1451
+ const int NoTrdRegTimestamps = 768;
1452
+ const int SendingDate = 51;
1453
+ const int TimeToExpiration = 1189;
1454
+ const int LegAllocQty = 673;
1455
+ const int SettlLocation = 166;
1456
+ const int UnderlyingExerciseStyle = 1419;
1457
+ const int CashSettlAgentContactName = 186;
1458
+ const int LegRepurchaseRate = 252;
1459
+ const int ApplResponseID = 1353;
1460
+ const int NoDerivativeInstrAttrib = 1311;
1461
+ const int DerivativeStrikeMultiplier = 1263;
1462
+ const int LegStrikeCurrency = 942;
1463
+ const int SecurityStatusReqID = 324;
1464
+ const int SecureDataLen = 90;
1465
+ const int DiscretionScope = 846;
1466
+ const int OwnerType = 522;
1467
+ const int Shares = 53;
1468
+ const int Yield = 236;
1469
+ const int QuoteRespID = 693;
1470
+ const int Nested3PartySubID = 953;
1471
+ const int ApplQueueResolution = 814;
1472
+ const int TrdRegTimestampOrigin = 771;
1473
+ const int Nested2PartyRole = 759;
1474
+ const int Nested2PartyID = 757;
1475
+ const int BidSize = 134;
1476
+ const int LegSymbolSfx = 601;
1477
+ const int QuoteResponseLevel = 301;
1478
+ const int BodyLength = 9;
1479
+ const int ListExecInst = 69;
1480
+ const int ExecAckStatus = 1036;
1481
+ const int SettlDate2 = 193;
1482
+ const int NetGrossInd = 430;
1483
+ const int UnderlyingSecurityAltIDSource = 459;
1484
+ const int TestReqID = 112;
1485
+ const int CxlType = 125;
1486
+ const int UnderlyingCreditRating = 256;
1487
+ const int AvgPxPrecision = 74;
1488
+ const int BenchmarkPriceType = 663;
1489
+ const int DeskTypeSource = 1034;
1490
+ const int DiscretionRoundDirection = 844;
1491
+ const int OrigSecondaryTradeID = 1127;
1492
+ const int ReceivedDeptID = 1030;
1493
+ const int MaturityNetMoney = 890;
1494
+ const int BidDescriptorType = 399;
1495
+ const int DerivativeInstrumentPartySubID = 1297;
1496
+ const int NetworkStatusResponseType = 937;
1497
+ const int DateOfBirth = 486;
1498
+ const int StartStrikePxRange = 1202;
1499
+ const int UndlyInstrumentPartySubID = 1063;
1500
+ const int SecondaryTradeReportRefID = 881;
1501
+ const int UnderlyingCPRegType = 878;
1502
+ const int SignatureLength = 93;
1503
+ const int OrderQty = 38;
1504
+ const int OriginalNotionalPercentageOutstanding = 1452;
1505
+ const int UnderlyingTimeUnit = 1000;
1506
+ const int EncodedHeadlineLen = 358;
1507
+ const int NoRegistDtls = 473;
1508
+ const int StrategyParameterValue = 960;
1509
+ const int NoInstrumentParties = 1018;
1510
+ const int QuoteType = 537;
1511
+ const int NoStrategyParameters = 957;
1512
+ const int IndividualAllocRejCode = 776;
1513
+ const int DiscretionInst = 388;
1514
+ const int TargetPartyRole = 1464;
1515
+ const int CrossPrioritization = 550;
1516
+ const int EncodedListStatusText = 446;
1517
+ const int IOIOthSvc = 24;
1518
+ const int LegIssueDate = 249;
1519
+ const int MDReqRejReason = 281;
1520
+ const int ApplReqType = 1347;
1521
+ const int Country = 421;
1522
+ const int UnderlyingLegSecurityIDSource = 1333;
1523
+ const int FlexProductEligibilityIndicator = 1242;
1524
+ const int AggressorIndicator = 1057;
1525
+ const int ExecPriceAdjustment = 485;
1526
+ const int BusinessRejectReason = 380;
1527
+ const int TradeDate = 75;
1528
+ const int UnderlyingPutOrCall = 315;
1529
+ const int UnderlyingInstrumentPartyRole = 1061;
1530
+ const int DerivativePositionLimit = 1273;
1531
+ const int TierCode = 994;
1532
+ const int BookingType = 775;
1533
+ const int StipulationValue = 234;
1534
+ const int SettlCurrBidFxRate = 656;
1535
+ }
1536
+ }
1537
+ #endif //FIX_FIELDNUMBERS_H