quickfix_ruby 1.14.3.1 → 1.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/ext/quickfix/Acceptor.h +2 -0
  3. data/ext/quickfix/AtomicCount.h +82 -12
  4. data/ext/quickfix/DOMDocument.h +9 -7
  5. data/ext/quickfix/DataDictionary.cpp +77 -14
  6. data/ext/quickfix/DataDictionary.h +90 -16
  7. data/ext/quickfix/Dictionary.cpp +1 -2
  8. data/ext/quickfix/Exceptions.h +3 -5
  9. data/ext/quickfix/Field.h +83 -32
  10. data/ext/quickfix/FieldConvertors.cpp +93 -0
  11. data/ext/quickfix/FieldConvertors.h +129 -275
  12. data/ext/quickfix/FieldMap.cpp +53 -13
  13. data/ext/quickfix/FieldMap.h +200 -62
  14. data/ext/quickfix/FieldTypes.cpp +10 -10
  15. data/ext/quickfix/FieldTypes.h +293 -44
  16. data/ext/quickfix/FileLog.cpp +6 -10
  17. data/ext/quickfix/FileLog.h +4 -10
  18. data/ext/quickfix/FileStore.cpp +19 -6
  19. data/ext/quickfix/FileStore.h +4 -0
  20. data/ext/quickfix/FixFieldNumbers.h +1462 -1461
  21. data/ext/quickfix/FixFields.h +1462 -1461
  22. data/ext/quickfix/FixValues.h +3230 -3227
  23. data/ext/quickfix/HttpConnection.cpp +1 -1
  24. data/ext/quickfix/Initiator.cpp +7 -1
  25. data/ext/quickfix/Initiator.h +2 -0
  26. data/ext/quickfix/Log.h +6 -12
  27. data/ext/quickfix/Message.cpp +186 -57
  28. data/ext/quickfix/Message.h +109 -47
  29. data/ext/quickfix/MySQLConnection.h +1 -1
  30. data/ext/quickfix/PostgreSQLConnection.h +1 -1
  31. data/ext/quickfix/QuickfixRuby.cpp +79141 -77959
  32. data/ext/quickfix/QuickfixRuby.h +1 -1
  33. data/ext/quickfix/SSLSocketAcceptor.cpp +410 -0
  34. data/ext/quickfix/SSLSocketAcceptor.h +185 -0
  35. data/ext/quickfix/SSLSocketConnection.cpp +427 -0
  36. data/ext/quickfix/SSLSocketConnection.h +206 -0
  37. data/ext/quickfix/SSLSocketInitiator.cpp +485 -0
  38. data/ext/quickfix/SSLSocketInitiator.h +196 -0
  39. data/ext/quickfix/Session.cpp +113 -20
  40. data/ext/quickfix/Session.h +18 -4
  41. data/ext/quickfix/SessionFactory.cpp +10 -3
  42. data/ext/quickfix/SessionSettings.cpp +5 -3
  43. data/ext/quickfix/SessionSettings.h +97 -5
  44. data/ext/quickfix/Settings.cpp +72 -2
  45. data/ext/quickfix/Settings.h +3 -0
  46. data/ext/quickfix/SharedArray.h +140 -6
  47. data/ext/quickfix/SocketConnection.cpp +2 -2
  48. data/ext/quickfix/SocketConnector.cpp +5 -2
  49. data/ext/quickfix/SocketConnector.h +3 -2
  50. data/ext/quickfix/SocketInitiator.cpp +28 -4
  51. data/ext/quickfix/SocketInitiator.h +1 -1
  52. data/ext/quickfix/SocketMonitor.cpp +5 -5
  53. data/ext/quickfix/ThreadedSSLSocketAcceptor.cpp +455 -0
  54. data/ext/quickfix/ThreadedSSLSocketAcceptor.h +217 -0
  55. data/ext/quickfix/ThreadedSSLSocketConnection.cpp +404 -0
  56. data/ext/quickfix/ThreadedSSLSocketConnection.h +189 -0
  57. data/ext/quickfix/ThreadedSSLSocketInitiator.cpp +469 -0
  58. data/ext/quickfix/ThreadedSSLSocketInitiator.h +201 -0
  59. data/ext/quickfix/ThreadedSocketAcceptor.cpp +5 -1
  60. data/ext/quickfix/ThreadedSocketConnection.cpp +8 -2
  61. data/ext/quickfix/ThreadedSocketConnection.h +4 -1
  62. data/ext/quickfix/ThreadedSocketInitiator.cpp +24 -4
  63. data/ext/quickfix/ThreadedSocketInitiator.h +1 -1
  64. data/ext/quickfix/Utility.cpp +23 -1
  65. data/ext/quickfix/Utility.h +28 -2
  66. data/ext/quickfix/UtilitySSL.cpp +1733 -0
  67. data/ext/quickfix/UtilitySSL.h +277 -0
  68. data/ext/quickfix/config-all.h +10 -0
  69. data/ext/quickfix/dirent_windows.h +838 -0
  70. data/ext/quickfix/double-conversion/bignum-dtoa.cc +641 -0
  71. data/ext/quickfix/double-conversion/bignum-dtoa.h +84 -0
  72. data/ext/quickfix/double-conversion/bignum.cc +766 -0
  73. data/ext/quickfix/double-conversion/bignum.h +144 -0
  74. data/ext/quickfix/double-conversion/cached-powers.cc +176 -0
  75. data/ext/quickfix/double-conversion/cached-powers.h +64 -0
  76. data/ext/quickfix/double-conversion/diy-fp.cc +57 -0
  77. data/ext/quickfix/double-conversion/diy-fp.h +118 -0
  78. data/ext/quickfix/double-conversion/double-conversion.cc +994 -0
  79. data/ext/quickfix/double-conversion/double-conversion.h +543 -0
  80. data/ext/quickfix/double-conversion/fast-dtoa.cc +665 -0
  81. data/ext/quickfix/double-conversion/fast-dtoa.h +88 -0
  82. data/ext/quickfix/double-conversion/fixed-dtoa.cc +404 -0
  83. data/ext/quickfix/double-conversion/fixed-dtoa.h +56 -0
  84. data/ext/quickfix/double-conversion/ieee.h +402 -0
  85. data/ext/quickfix/double-conversion/strtod.cc +557 -0
  86. data/ext/quickfix/double-conversion/strtod.h +45 -0
  87. data/ext/quickfix/double-conversion/utils.h +372 -0
  88. data/ext/quickfix/stdint_msvc.h +254 -0
  89. data/lib/quickfix44.rb +3329 -10
  90. data/lib/quickfix50.rb +6649 -81
  91. data/lib/quickfix50sp1.rb +8054 -142
  92. data/lib/quickfix50sp2.rb +10900 -234
  93. data/lib/quickfix_fields.rb +7662 -7649
  94. data/spec/FIX40.xml +28 -28
  95. data/spec/FIX41.xml +29 -29
  96. data/spec/FIX42.xml +47 -47
  97. data/spec/FIX43.xml +148 -148
  98. data/spec/FIX44.xml +1078 -1081
  99. data/spec/FIX50.xml +1292 -1289
  100. data/spec/FIX50SP1.xml +1811 -1802
  101. data/spec/FIX50SP2.xml +1948 -1939
  102. data/spec/FIXT11.xml +5 -8
  103. data/test/test_FieldBaseTestCase.rb +1 -1
  104. data/test/test_MessageTestCase.rb +2 -2
  105. metadata +42 -6
@@ -55,6 +55,28 @@ class IOI < Message
55
55
  getHeader().setField( Quickfix::MsgType.new("6") )
56
56
  end
57
57
 
58
+ class NoSecurityAltID < Quickfix::Group
59
+ def initialize
60
+ order = Quickfix::IntArray.new(3)
61
+ order[0] = 455
62
+ order[1] = 456
63
+ order[2] = 0
64
+ super(454, 455, order)
65
+ end
66
+ end
67
+
68
+ class NoEvents < Quickfix::Group
69
+ def initialize
70
+ order = Quickfix::IntArray.new(5)
71
+ order[0] = 865
72
+ order[1] = 866
73
+ order[2] = 867
74
+ order[3] = 868
75
+ order[4] = 0
76
+ super(864, 865, order)
77
+ end
78
+ end
79
+
58
80
  class NoUnderlyings < Quickfix::Group
59
81
  def initialize
60
82
  order = Quickfix::IntArray.new(46)
@@ -106,6 +128,26 @@ class IOI < Message
106
128
  order[45] = 0
107
129
  super(711, 311, order)
108
130
  end
131
+
132
+ class NoUnderlyingSecurityAltID < Quickfix::Group
133
+ def initialize
134
+ order = Quickfix::IntArray.new(3)
135
+ order[0] = 458
136
+ order[1] = 459
137
+ order[2] = 0
138
+ super(457, 458, order)
139
+ end
140
+ end
141
+
142
+ class NoUnderlyingStips < Quickfix::Group
143
+ def initialize
144
+ order = Quickfix::IntArray.new(3)
145
+ order[0] = 888
146
+ order[1] = 889
147
+ order[2] = 0
148
+ super(887, 888, order)
149
+ end
150
+ end
109
151
  end
110
152
 
111
153
  class NoStipulations < Quickfix::Group
@@ -168,6 +210,16 @@ class IOI < Message
168
210
  super(555, 600, order)
169
211
  end
170
212
 
213
+ class NoLegSecurityAltID < Quickfix::Group
214
+ def initialize
215
+ order = Quickfix::IntArray.new(3)
216
+ order[0] = 605
217
+ order[1] = 606
218
+ order[2] = 0
219
+ super(604, 605, order)
220
+ end
221
+ end
222
+
171
223
  class NoLegStipulations < Quickfix::Group
172
224
  def initialize
173
225
  order = Quickfix::IntArray.new(3)
@@ -205,6 +257,28 @@ class Advertisement < Message
205
257
  getHeader().setField( Quickfix::MsgType.new("7") )
206
258
  end
207
259
 
260
+ class NoSecurityAltID < Quickfix::Group
261
+ def initialize
262
+ order = Quickfix::IntArray.new(3)
263
+ order[0] = 455
264
+ order[1] = 456
265
+ order[2] = 0
266
+ super(454, 455, order)
267
+ end
268
+ end
269
+
270
+ class NoEvents < Quickfix::Group
271
+ def initialize
272
+ order = Quickfix::IntArray.new(5)
273
+ order[0] = 865
274
+ order[1] = 866
275
+ order[2] = 867
276
+ order[3] = 868
277
+ order[4] = 0
278
+ super(864, 865, order)
279
+ end
280
+ end
281
+
208
282
  class NoLegs < Quickfix::Group
209
283
  def initialize
210
284
  order = Quickfix::IntArray.new(42)
@@ -252,6 +326,16 @@ class Advertisement < Message
252
326
  order[41] = 0
253
327
  super(555, 600, order)
254
328
  end
329
+
330
+ class NoLegSecurityAltID < Quickfix::Group
331
+ def initialize
332
+ order = Quickfix::IntArray.new(3)
333
+ order[0] = 605
334
+ order[1] = 606
335
+ order[2] = 0
336
+ super(604, 605, order)
337
+ end
338
+ end
255
339
  end
256
340
 
257
341
  class NoUnderlyings < Quickfix::Group
@@ -305,6 +389,26 @@ class Advertisement < Message
305
389
  order[45] = 0
306
390
  super(711, 311, order)
307
391
  end
392
+
393
+ class NoUnderlyingSecurityAltID < Quickfix::Group
394
+ def initialize
395
+ order = Quickfix::IntArray.new(3)
396
+ order[0] = 458
397
+ order[1] = 459
398
+ order[2] = 0
399
+ super(457, 458, order)
400
+ end
401
+ end
402
+
403
+ class NoUnderlyingStips < Quickfix::Group
404
+ def initialize
405
+ order = Quickfix::IntArray.new(3)
406
+ order[0] = 888
407
+ order[1] = 889
408
+ order[2] = 0
409
+ super(887, 888, order)
410
+ end
411
+ end
308
412
  end
309
413
  end
310
414
 
@@ -349,6 +453,28 @@ class ExecutionReport < Message
349
453
  end
350
454
  end
351
455
 
456
+ class NoSecurityAltID < Quickfix::Group
457
+ def initialize
458
+ order = Quickfix::IntArray.new(3)
459
+ order[0] = 455
460
+ order[1] = 456
461
+ order[2] = 0
462
+ super(454, 455, order)
463
+ end
464
+ end
465
+
466
+ class NoEvents < Quickfix::Group
467
+ def initialize
468
+ order = Quickfix::IntArray.new(5)
469
+ order[0] = 865
470
+ order[1] = 866
471
+ order[2] = 867
472
+ order[3] = 868
473
+ order[4] = 0
474
+ super(864, 865, order)
475
+ end
476
+ end
477
+
352
478
  class NoUnderlyings < Quickfix::Group
353
479
  def initialize
354
480
  order = Quickfix::IntArray.new(46)
@@ -400,6 +526,26 @@ class ExecutionReport < Message
400
526
  order[45] = 0
401
527
  super(711, 311, order)
402
528
  end
529
+
530
+ class NoUnderlyingSecurityAltID < Quickfix::Group
531
+ def initialize
532
+ order = Quickfix::IntArray.new(3)
533
+ order[0] = 458
534
+ order[1] = 459
535
+ order[2] = 0
536
+ super(457, 458, order)
537
+ end
538
+ end
539
+
540
+ class NoUnderlyingStips < Quickfix::Group
541
+ def initialize
542
+ order = Quickfix::IntArray.new(3)
543
+ order[0] = 888
544
+ order[1] = 889
545
+ order[2] = 0
546
+ super(887, 888, order)
547
+ end
548
+ end
403
549
  end
404
550
 
405
551
  class NoStipulations < Quickfix::Group
@@ -482,6 +628,16 @@ class ExecutionReport < Message
482
628
  super(555, 600, order)
483
629
  end
484
630
 
631
+ class NoLegSecurityAltID < Quickfix::Group
632
+ def initialize
633
+ order = Quickfix::IntArray.new(3)
634
+ order[0] = 605
635
+ order[1] = 606
636
+ order[2] = 0
637
+ super(604, 605, order)
638
+ end
639
+ end
640
+
485
641
  class NoLegStipulations < Quickfix::Group
486
642
  def initialize
487
643
  order = Quickfix::IntArray.new(3)
@@ -615,6 +771,28 @@ class News < Message
615
771
  order[41] = 0
616
772
  super(146, 55, order)
617
773
  end
774
+
775
+ class NoSecurityAltID < Quickfix::Group
776
+ def initialize
777
+ order = Quickfix::IntArray.new(3)
778
+ order[0] = 455
779
+ order[1] = 456
780
+ order[2] = 0
781
+ super(454, 455, order)
782
+ end
783
+ end
784
+
785
+ class NoEvents < Quickfix::Group
786
+ def initialize
787
+ order = Quickfix::IntArray.new(5)
788
+ order[0] = 865
789
+ order[1] = 866
790
+ order[2] = 867
791
+ order[3] = 868
792
+ order[4] = 0
793
+ super(864, 865, order)
794
+ end
795
+ end
618
796
  end
619
797
 
620
798
  class NoLegs < Quickfix::Group
@@ -664,6 +842,16 @@ class News < Message
664
842
  order[41] = 0
665
843
  super(555, 600, order)
666
844
  end
845
+
846
+ class NoLegSecurityAltID < Quickfix::Group
847
+ def initialize
848
+ order = Quickfix::IntArray.new(3)
849
+ order[0] = 605
850
+ order[1] = 606
851
+ order[2] = 0
852
+ super(604, 605, order)
853
+ end
854
+ end
667
855
  end
668
856
 
669
857
  class NoUnderlyings < Quickfix::Group
@@ -717,6 +905,26 @@ class News < Message
717
905
  order[45] = 0
718
906
  super(711, 311, order)
719
907
  end
908
+
909
+ class NoUnderlyingSecurityAltID < Quickfix::Group
910
+ def initialize
911
+ order = Quickfix::IntArray.new(3)
912
+ order[0] = 458
913
+ order[1] = 459
914
+ order[2] = 0
915
+ super(457, 458, order)
916
+ end
917
+ end
918
+
919
+ class NoUnderlyingStips < Quickfix::Group
920
+ def initialize
921
+ order = Quickfix::IntArray.new(3)
922
+ order[0] = 888
923
+ order[1] = 889
924
+ order[2] = 0
925
+ super(887, 888, order)
926
+ end
927
+ end
720
928
  end
721
929
 
722
930
  class NoLinesOfText < Quickfix::Group
@@ -794,6 +1002,28 @@ class Email < Message
794
1002
  order[41] = 0
795
1003
  super(146, 55, order)
796
1004
  end
1005
+
1006
+ class NoSecurityAltID < Quickfix::Group
1007
+ def initialize
1008
+ order = Quickfix::IntArray.new(3)
1009
+ order[0] = 455
1010
+ order[1] = 456
1011
+ order[2] = 0
1012
+ super(454, 455, order)
1013
+ end
1014
+ end
1015
+
1016
+ class NoEvents < Quickfix::Group
1017
+ def initialize
1018
+ order = Quickfix::IntArray.new(5)
1019
+ order[0] = 865
1020
+ order[1] = 866
1021
+ order[2] = 867
1022
+ order[3] = 868
1023
+ order[4] = 0
1024
+ super(864, 865, order)
1025
+ end
1026
+ end
797
1027
  end
798
1028
 
799
1029
  class NoUnderlyings < Quickfix::Group
@@ -847,6 +1077,26 @@ class Email < Message
847
1077
  order[45] = 0
848
1078
  super(711, 311, order)
849
1079
  end
1080
+
1081
+ class NoUnderlyingSecurityAltID < Quickfix::Group
1082
+ def initialize
1083
+ order = Quickfix::IntArray.new(3)
1084
+ order[0] = 458
1085
+ order[1] = 459
1086
+ order[2] = 0
1087
+ super(457, 458, order)
1088
+ end
1089
+ end
1090
+
1091
+ class NoUnderlyingStips < Quickfix::Group
1092
+ def initialize
1093
+ order = Quickfix::IntArray.new(3)
1094
+ order[0] = 888
1095
+ order[1] = 889
1096
+ order[2] = 0
1097
+ super(887, 888, order)
1098
+ end
1099
+ end
850
1100
  end
851
1101
 
852
1102
  class NoLegs < Quickfix::Group
@@ -896,6 +1146,16 @@ class Email < Message
896
1146
  order[41] = 0
897
1147
  super(555, 600, order)
898
1148
  end
1149
+
1150
+ class NoLegSecurityAltID < Quickfix::Group
1151
+ def initialize
1152
+ order = Quickfix::IntArray.new(3)
1153
+ order[0] = 605
1154
+ order[1] = 606
1155
+ order[2] = 0
1156
+ super(604, 605, order)
1157
+ end
1158
+ end
899
1159
  end
900
1160
 
901
1161
  class NoLinesOfText < Quickfix::Group
@@ -984,6 +1244,28 @@ class NewOrderSingle < Message
984
1244
  end
985
1245
  end
986
1246
 
1247
+ class NoSecurityAltID < Quickfix::Group
1248
+ def initialize
1249
+ order = Quickfix::IntArray.new(3)
1250
+ order[0] = 455
1251
+ order[1] = 456
1252
+ order[2] = 0
1253
+ super(454, 455, order)
1254
+ end
1255
+ end
1256
+
1257
+ class NoEvents < Quickfix::Group
1258
+ def initialize
1259
+ order = Quickfix::IntArray.new(5)
1260
+ order[0] = 865
1261
+ order[1] = 866
1262
+ order[2] = 867
1263
+ order[3] = 868
1264
+ order[4] = 0
1265
+ super(864, 865, order)
1266
+ end
1267
+ end
1268
+
987
1269
  class NoUnderlyings < Quickfix::Group
988
1270
  def initialize
989
1271
  order = Quickfix::IntArray.new(46)
@@ -1035,6 +1317,26 @@ class NewOrderSingle < Message
1035
1317
  order[45] = 0
1036
1318
  super(711, 311, order)
1037
1319
  end
1320
+
1321
+ class NoUnderlyingSecurityAltID < Quickfix::Group
1322
+ def initialize
1323
+ order = Quickfix::IntArray.new(3)
1324
+ order[0] = 458
1325
+ order[1] = 459
1326
+ order[2] = 0
1327
+ super(457, 458, order)
1328
+ end
1329
+ end
1330
+
1331
+ class NoUnderlyingStips < Quickfix::Group
1332
+ def initialize
1333
+ order = Quickfix::IntArray.new(3)
1334
+ order[0] = 888
1335
+ order[1] = 889
1336
+ order[2] = 0
1337
+ super(887, 888, order)
1338
+ end
1339
+ end
1038
1340
  end
1039
1341
 
1040
1342
  class NoStipulations < Quickfix::Group
@@ -1274,6 +1576,28 @@ class NewOrderList < Message
1274
1576
  end
1275
1577
  end
1276
1578
 
1579
+ class NoSecurityAltID < Quickfix::Group
1580
+ def initialize
1581
+ order = Quickfix::IntArray.new(3)
1582
+ order[0] = 455
1583
+ order[1] = 456
1584
+ order[2] = 0
1585
+ super(454, 455, order)
1586
+ end
1587
+ end
1588
+
1589
+ class NoEvents < Quickfix::Group
1590
+ def initialize
1591
+ order = Quickfix::IntArray.new(5)
1592
+ order[0] = 865
1593
+ order[1] = 866
1594
+ order[2] = 867
1595
+ order[3] = 868
1596
+ order[4] = 0
1597
+ super(864, 865, order)
1598
+ end
1599
+ end
1600
+
1277
1601
  class NoUnderlyings < Quickfix::Group
1278
1602
  def initialize
1279
1603
  order = Quickfix::IntArray.new(46)
@@ -1325,6 +1649,26 @@ class NewOrderList < Message
1325
1649
  order[45] = 0
1326
1650
  super(711, 311, order)
1327
1651
  end
1652
+
1653
+ class NoUnderlyingSecurityAltID < Quickfix::Group
1654
+ def initialize
1655
+ order = Quickfix::IntArray.new(3)
1656
+ order[0] = 458
1657
+ order[1] = 459
1658
+ order[2] = 0
1659
+ super(457, 458, order)
1660
+ end
1661
+ end
1662
+
1663
+ class NoUnderlyingStips < Quickfix::Group
1664
+ def initialize
1665
+ order = Quickfix::IntArray.new(3)
1666
+ order[0] = 888
1667
+ order[1] = 889
1668
+ order[2] = 0
1669
+ super(887, 888, order)
1670
+ end
1671
+ end
1328
1672
  end
1329
1673
 
1330
1674
  class NoStipulations < Quickfix::Group
@@ -1367,6 +1711,28 @@ class OrderCancelRequest < Message
1367
1711
  end
1368
1712
  end
1369
1713
 
1714
+ class NoSecurityAltID < Quickfix::Group
1715
+ def initialize
1716
+ order = Quickfix::IntArray.new(3)
1717
+ order[0] = 455
1718
+ order[1] = 456
1719
+ order[2] = 0
1720
+ super(454, 455, order)
1721
+ end
1722
+ end
1723
+
1724
+ class NoEvents < Quickfix::Group
1725
+ def initialize
1726
+ order = Quickfix::IntArray.new(5)
1727
+ order[0] = 865
1728
+ order[1] = 866
1729
+ order[2] = 867
1730
+ order[3] = 868
1731
+ order[4] = 0
1732
+ super(864, 865, order)
1733
+ end
1734
+ end
1735
+
1370
1736
  class NoUnderlyings < Quickfix::Group
1371
1737
  def initialize
1372
1738
  order = Quickfix::IntArray.new(46)
@@ -1418,6 +1784,26 @@ class OrderCancelRequest < Message
1418
1784
  order[45] = 0
1419
1785
  super(711, 311, order)
1420
1786
  end
1787
+
1788
+ class NoUnderlyingSecurityAltID < Quickfix::Group
1789
+ def initialize
1790
+ order = Quickfix::IntArray.new(3)
1791
+ order[0] = 458
1792
+ order[1] = 459
1793
+ order[2] = 0
1794
+ super(457, 458, order)
1795
+ end
1796
+ end
1797
+
1798
+ class NoUnderlyingStips < Quickfix::Group
1799
+ def initialize
1800
+ order = Quickfix::IntArray.new(3)
1801
+ order[0] = 888
1802
+ order[1] = 889
1803
+ order[2] = 0
1804
+ super(887, 888, order)
1805
+ end
1806
+ end
1421
1807
  end
1422
1808
  end
1423
1809
 
@@ -1495,6 +1881,28 @@ class OrderCancelReplaceRequest < Message
1495
1881
  end
1496
1882
  end
1497
1883
 
1884
+ class NoSecurityAltID < Quickfix::Group
1885
+ def initialize
1886
+ order = Quickfix::IntArray.new(3)
1887
+ order[0] = 455
1888
+ order[1] = 456
1889
+ order[2] = 0
1890
+ super(454, 455, order)
1891
+ end
1892
+ end
1893
+
1894
+ class NoEvents < Quickfix::Group
1895
+ def initialize
1896
+ order = Quickfix::IntArray.new(5)
1897
+ order[0] = 865
1898
+ order[1] = 866
1899
+ order[2] = 867
1900
+ order[3] = 868
1901
+ order[4] = 0
1902
+ super(864, 865, order)
1903
+ end
1904
+ end
1905
+
1498
1906
  class NoUnderlyings < Quickfix::Group
1499
1907
  def initialize
1500
1908
  order = Quickfix::IntArray.new(46)
@@ -1546,6 +1954,26 @@ class OrderCancelReplaceRequest < Message
1546
1954
  order[45] = 0
1547
1955
  super(711, 311, order)
1548
1956
  end
1957
+
1958
+ class NoUnderlyingSecurityAltID < Quickfix::Group
1959
+ def initialize
1960
+ order = Quickfix::IntArray.new(3)
1961
+ order[0] = 458
1962
+ order[1] = 459
1963
+ order[2] = 0
1964
+ super(457, 458, order)
1965
+ end
1966
+ end
1967
+
1968
+ class NoUnderlyingStips < Quickfix::Group
1969
+ def initialize
1970
+ order = Quickfix::IntArray.new(3)
1971
+ order[0] = 888
1972
+ order[1] = 889
1973
+ order[2] = 0
1974
+ super(887, 888, order)
1975
+ end
1976
+ end
1549
1977
  end
1550
1978
  end
1551
1979
 
@@ -1577,17 +2005,39 @@ class OrderStatusRequest < Message
1577
2005
  end
1578
2006
  end
1579
2007
 
1580
- class NoUnderlyings < Quickfix::Group
2008
+ class NoSecurityAltID < Quickfix::Group
1581
2009
  def initialize
1582
- order = Quickfix::IntArray.new(46)
1583
- order[0] = 311
1584
- order[1] = 312
1585
- order[2] = 309
1586
- order[3] = 305
1587
- order[4] = 462
1588
- order[5] = 463
1589
- order[6] = 310
1590
- order[7] = 763
2010
+ order = Quickfix::IntArray.new(3)
2011
+ order[0] = 455
2012
+ order[1] = 456
2013
+ order[2] = 0
2014
+ super(454, 455, order)
2015
+ end
2016
+ end
2017
+
2018
+ class NoEvents < Quickfix::Group
2019
+ def initialize
2020
+ order = Quickfix::IntArray.new(5)
2021
+ order[0] = 865
2022
+ order[1] = 866
2023
+ order[2] = 867
2024
+ order[3] = 868
2025
+ order[4] = 0
2026
+ super(864, 865, order)
2027
+ end
2028
+ end
2029
+
2030
+ class NoUnderlyings < Quickfix::Group
2031
+ def initialize
2032
+ order = Quickfix::IntArray.new(46)
2033
+ order[0] = 311
2034
+ order[1] = 312
2035
+ order[2] = 309
2036
+ order[3] = 305
2037
+ order[4] = 462
2038
+ order[5] = 463
2039
+ order[6] = 310
2040
+ order[7] = 763
1591
2041
  order[8] = 313
1592
2042
  order[9] = 542
1593
2043
  order[10] = 315
@@ -1628,6 +2078,26 @@ class OrderStatusRequest < Message
1628
2078
  order[45] = 0
1629
2079
  super(711, 311, order)
1630
2080
  end
2081
+
2082
+ class NoUnderlyingSecurityAltID < Quickfix::Group
2083
+ def initialize
2084
+ order = Quickfix::IntArray.new(3)
2085
+ order[0] = 458
2086
+ order[1] = 459
2087
+ order[2] = 0
2088
+ super(457, 458, order)
2089
+ end
2090
+ end
2091
+
2092
+ class NoUnderlyingStips < Quickfix::Group
2093
+ def initialize
2094
+ order = Quickfix::IntArray.new(3)
2095
+ order[0] = 888
2096
+ order[1] = 889
2097
+ order[2] = 0
2098
+ super(887, 888, order)
2099
+ end
2100
+ end
1631
2101
  end
1632
2102
  end
1633
2103
 
@@ -1690,6 +2160,38 @@ class AllocationInstruction < Message
1690
2160
  end
1691
2161
  end
1692
2162
 
2163
+ class NoSecurityAltID < Quickfix::Group
2164
+ def initialize
2165
+ order = Quickfix::IntArray.new(3)
2166
+ order[0] = 455
2167
+ order[1] = 456
2168
+ order[2] = 0
2169
+ super(454, 455, order)
2170
+ end
2171
+ end
2172
+
2173
+ class NoEvents < Quickfix::Group
2174
+ def initialize
2175
+ order = Quickfix::IntArray.new(5)
2176
+ order[0] = 865
2177
+ order[1] = 866
2178
+ order[2] = 867
2179
+ order[3] = 868
2180
+ order[4] = 0
2181
+ super(864, 865, order)
2182
+ end
2183
+ end
2184
+
2185
+ class NoInstrAttrib < Quickfix::Group
2186
+ def initialize
2187
+ order = Quickfix::IntArray.new(3)
2188
+ order[0] = 871
2189
+ order[1] = 872
2190
+ order[2] = 0
2191
+ super(870, 871, order)
2192
+ end
2193
+ end
2194
+
1693
2195
  class NoUnderlyings < Quickfix::Group
1694
2196
  def initialize
1695
2197
  order = Quickfix::IntArray.new(46)
@@ -1741,6 +2243,26 @@ class AllocationInstruction < Message
1741
2243
  order[45] = 0
1742
2244
  super(711, 311, order)
1743
2245
  end
2246
+
2247
+ class NoUnderlyingSecurityAltID < Quickfix::Group
2248
+ def initialize
2249
+ order = Quickfix::IntArray.new(3)
2250
+ order[0] = 458
2251
+ order[1] = 459
2252
+ order[2] = 0
2253
+ super(457, 458, order)
2254
+ end
2255
+ end
2256
+
2257
+ class NoUnderlyingStips < Quickfix::Group
2258
+ def initialize
2259
+ order = Quickfix::IntArray.new(3)
2260
+ order[0] = 888
2261
+ order[1] = 889
2262
+ order[2] = 0
2263
+ super(887, 888, order)
2264
+ end
2265
+ end
1744
2266
  end
1745
2267
 
1746
2268
  class NoLegs < Quickfix::Group
@@ -1790,6 +2312,16 @@ class AllocationInstruction < Message
1790
2312
  order[41] = 0
1791
2313
  super(555, 600, order)
1792
2314
  end
2315
+
2316
+ class NoLegSecurityAltID < Quickfix::Group
2317
+ def initialize
2318
+ order = Quickfix::IntArray.new(3)
2319
+ order[0] = 605
2320
+ order[1] = 606
2321
+ order[2] = 0
2322
+ super(604, 605, order)
2323
+ end
2324
+ end
1793
2325
  end
1794
2326
 
1795
2327
  class NoPartyIDs < Quickfix::Group
@@ -1907,6 +2439,39 @@ class AllocationInstruction < Message
1907
2439
  super(576, 577, order)
1908
2440
  end
1909
2441
  end
2442
+
2443
+ class NoDlvyInst < Quickfix::Group
2444
+ def initialize
2445
+ order = Quickfix::IntArray.new(4)
2446
+ order[0] = 165
2447
+ order[1] = 787
2448
+ order[2] = 781
2449
+ order[3] = 0
2450
+ super(85, 165, order)
2451
+ end
2452
+
2453
+ class NoSettlPartyIDs < Quickfix::Group
2454
+ def initialize
2455
+ order = Quickfix::IntArray.new(5)
2456
+ order[0] = 782
2457
+ order[1] = 783
2458
+ order[2] = 784
2459
+ order[3] = 801
2460
+ order[4] = 0
2461
+ super(781, 782, order)
2462
+ end
2463
+
2464
+ class NoSettlPartySubIDs < Quickfix::Group
2465
+ def initialize
2466
+ order = Quickfix::IntArray.new(3)
2467
+ order[0] = 785
2468
+ order[1] = 786
2469
+ order[2] = 0
2470
+ super(801, 785, order)
2471
+ end
2472
+ end
2473
+ end
2474
+ end
1910
2475
  end
1911
2476
  end
1912
2477
 
@@ -2009,6 +2574,28 @@ class DontKnowTrade < Message
2009
2574
  getHeader().setField( Quickfix::MsgType.new("Q") )
2010
2575
  end
2011
2576
 
2577
+ class NoSecurityAltID < Quickfix::Group
2578
+ def initialize
2579
+ order = Quickfix::IntArray.new(3)
2580
+ order[0] = 455
2581
+ order[1] = 456
2582
+ order[2] = 0
2583
+ super(454, 455, order)
2584
+ end
2585
+ end
2586
+
2587
+ class NoEvents < Quickfix::Group
2588
+ def initialize
2589
+ order = Quickfix::IntArray.new(5)
2590
+ order[0] = 865
2591
+ order[1] = 866
2592
+ order[2] = 867
2593
+ order[3] = 868
2594
+ order[4] = 0
2595
+ super(864, 865, order)
2596
+ end
2597
+ end
2598
+
2012
2599
  class NoUnderlyings < Quickfix::Group
2013
2600
  def initialize
2014
2601
  order = Quickfix::IntArray.new(46)
@@ -2060,6 +2647,26 @@ class DontKnowTrade < Message
2060
2647
  order[45] = 0
2061
2648
  super(711, 311, order)
2062
2649
  end
2650
+
2651
+ class NoUnderlyingSecurityAltID < Quickfix::Group
2652
+ def initialize
2653
+ order = Quickfix::IntArray.new(3)
2654
+ order[0] = 458
2655
+ order[1] = 459
2656
+ order[2] = 0
2657
+ super(457, 458, order)
2658
+ end
2659
+ end
2660
+
2661
+ class NoUnderlyingStips < Quickfix::Group
2662
+ def initialize
2663
+ order = Quickfix::IntArray.new(3)
2664
+ order[0] = 888
2665
+ order[1] = 889
2666
+ order[2] = 0
2667
+ super(887, 888, order)
2668
+ end
2669
+ end
2063
2670
  end
2064
2671
 
2065
2672
  class NoLegs < Quickfix::Group
@@ -2109,6 +2716,16 @@ class DontKnowTrade < Message
2109
2716
  order[41] = 0
2110
2717
  super(555, 600, order)
2111
2718
  end
2719
+
2720
+ class NoLegSecurityAltID < Quickfix::Group
2721
+ def initialize
2722
+ order = Quickfix::IntArray.new(3)
2723
+ order[0] = 605
2724
+ order[1] = 606
2725
+ order[2] = 0
2726
+ super(604, 605, order)
2727
+ end
2728
+ end
2112
2729
  end
2113
2730
  end
2114
2731
 
@@ -2223,6 +2840,28 @@ class QuoteRequest < Message
2223
2840
  super(146, 55, order)
2224
2841
  end
2225
2842
 
2843
+ class NoSecurityAltID < Quickfix::Group
2844
+ def initialize
2845
+ order = Quickfix::IntArray.new(3)
2846
+ order[0] = 455
2847
+ order[1] = 456
2848
+ order[2] = 0
2849
+ super(454, 455, order)
2850
+ end
2851
+ end
2852
+
2853
+ class NoEvents < Quickfix::Group
2854
+ def initialize
2855
+ order = Quickfix::IntArray.new(5)
2856
+ order[0] = 865
2857
+ order[1] = 866
2858
+ order[2] = 867
2859
+ order[3] = 868
2860
+ order[4] = 0
2861
+ super(864, 865, order)
2862
+ end
2863
+ end
2864
+
2226
2865
  class NoUnderlyings < Quickfix::Group
2227
2866
  def initialize
2228
2867
  order = Quickfix::IntArray.new(46)
@@ -2274,6 +2913,26 @@ class QuoteRequest < Message
2274
2913
  order[45] = 0
2275
2914
  super(711, 311, order)
2276
2915
  end
2916
+
2917
+ class NoUnderlyingSecurityAltID < Quickfix::Group
2918
+ def initialize
2919
+ order = Quickfix::IntArray.new(3)
2920
+ order[0] = 458
2921
+ order[1] = 459
2922
+ order[2] = 0
2923
+ super(457, 458, order)
2924
+ end
2925
+ end
2926
+
2927
+ class NoUnderlyingStips < Quickfix::Group
2928
+ def initialize
2929
+ order = Quickfix::IntArray.new(3)
2930
+ order[0] = 888
2931
+ order[1] = 889
2932
+ order[2] = 0
2933
+ super(887, 888, order)
2934
+ end
2935
+ end
2277
2936
  end
2278
2937
 
2279
2938
  class NoStipulations < Quickfix::Group
@@ -2345,6 +3004,16 @@ class QuoteRequest < Message
2345
3004
  super(555, 600, order)
2346
3005
  end
2347
3006
 
3007
+ class NoLegSecurityAltID < Quickfix::Group
3008
+ def initialize
3009
+ order = Quickfix::IntArray.new(3)
3010
+ order[0] = 605
3011
+ order[1] = 606
3012
+ order[2] = 0
3013
+ super(604, 605, order)
3014
+ end
3015
+ end
3016
+
2348
3017
  class NoLegStipulations < Quickfix::Group
2349
3018
  def initialize
2350
3019
  order = Quickfix::IntArray.new(3)
@@ -2448,6 +3117,28 @@ class Quote < Message
2448
3117
  end
2449
3118
  end
2450
3119
 
3120
+ class NoSecurityAltID < Quickfix::Group
3121
+ def initialize
3122
+ order = Quickfix::IntArray.new(3)
3123
+ order[0] = 455
3124
+ order[1] = 456
3125
+ order[2] = 0
3126
+ super(454, 455, order)
3127
+ end
3128
+ end
3129
+
3130
+ class NoEvents < Quickfix::Group
3131
+ def initialize
3132
+ order = Quickfix::IntArray.new(5)
3133
+ order[0] = 865
3134
+ order[1] = 866
3135
+ order[2] = 867
3136
+ order[3] = 868
3137
+ order[4] = 0
3138
+ super(864, 865, order)
3139
+ end
3140
+ end
3141
+
2451
3142
  class NoUnderlyings < Quickfix::Group
2452
3143
  def initialize
2453
3144
  order = Quickfix::IntArray.new(46)
@@ -2499,6 +3190,26 @@ class Quote < Message
2499
3190
  order[45] = 0
2500
3191
  super(711, 311, order)
2501
3192
  end
3193
+
3194
+ class NoUnderlyingSecurityAltID < Quickfix::Group
3195
+ def initialize
3196
+ order = Quickfix::IntArray.new(3)
3197
+ order[0] = 458
3198
+ order[1] = 459
3199
+ order[2] = 0
3200
+ super(457, 458, order)
3201
+ end
3202
+ end
3203
+
3204
+ class NoUnderlyingStips < Quickfix::Group
3205
+ def initialize
3206
+ order = Quickfix::IntArray.new(3)
3207
+ order[0] = 888
3208
+ order[1] = 889
3209
+ order[2] = 0
3210
+ super(887, 888, order)
3211
+ end
3212
+ end
2502
3213
  end
2503
3214
 
2504
3215
  class NoStipulations < Quickfix::Group
@@ -2573,6 +3284,16 @@ class Quote < Message
2573
3284
  super(555, 600, order)
2574
3285
  end
2575
3286
 
3287
+ class NoLegSecurityAltID < Quickfix::Group
3288
+ def initialize
3289
+ order = Quickfix::IntArray.new(3)
3290
+ order[0] = 605
3291
+ order[1] = 606
3292
+ order[2] = 0
3293
+ super(604, 605, order)
3294
+ end
3295
+ end
3296
+
2576
3297
  class NoLegStipulations < Quickfix::Group
2577
3298
  def initialize
2578
3299
  order = Quickfix::IntArray.new(3)
@@ -2665,6 +3386,39 @@ class SettlementInstructions < Message
2665
3386
  end
2666
3387
  end
2667
3388
  end
3389
+
3390
+ class NoDlvyInst < Quickfix::Group
3391
+ def initialize
3392
+ order = Quickfix::IntArray.new(4)
3393
+ order[0] = 165
3394
+ order[1] = 787
3395
+ order[2] = 781
3396
+ order[3] = 0
3397
+ super(85, 165, order)
3398
+ end
3399
+
3400
+ class NoSettlPartyIDs < Quickfix::Group
3401
+ def initialize
3402
+ order = Quickfix::IntArray.new(5)
3403
+ order[0] = 782
3404
+ order[1] = 783
3405
+ order[2] = 784
3406
+ order[3] = 801
3407
+ order[4] = 0
3408
+ super(781, 782, order)
3409
+ end
3410
+
3411
+ class NoSettlPartySubIDs < Quickfix::Group
3412
+ def initialize
3413
+ order = Quickfix::IntArray.new(3)
3414
+ order[0] = 785
3415
+ order[1] = 786
3416
+ order[2] = 0
3417
+ super(801, 785, order)
3418
+ end
3419
+ end
3420
+ end
3421
+ end
2668
3422
  end
2669
3423
  end
2670
3424
 
@@ -2733,6 +3487,28 @@ class MarketDataRequest < Message
2733
3487
  super(146, 55, order)
2734
3488
  end
2735
3489
 
3490
+ class NoSecurityAltID < Quickfix::Group
3491
+ def initialize
3492
+ order = Quickfix::IntArray.new(3)
3493
+ order[0] = 455
3494
+ order[1] = 456
3495
+ order[2] = 0
3496
+ super(454, 455, order)
3497
+ end
3498
+ end
3499
+
3500
+ class NoEvents < Quickfix::Group
3501
+ def initialize
3502
+ order = Quickfix::IntArray.new(5)
3503
+ order[0] = 865
3504
+ order[1] = 866
3505
+ order[2] = 867
3506
+ order[3] = 868
3507
+ order[4] = 0
3508
+ super(864, 865, order)
3509
+ end
3510
+ end
3511
+
2736
3512
  class NoUnderlyings < Quickfix::Group
2737
3513
  def initialize
2738
3514
  order = Quickfix::IntArray.new(46)
@@ -2784,6 +3560,26 @@ class MarketDataRequest < Message
2784
3560
  order[45] = 0
2785
3561
  super(711, 311, order)
2786
3562
  end
3563
+
3564
+ class NoUnderlyingSecurityAltID < Quickfix::Group
3565
+ def initialize
3566
+ order = Quickfix::IntArray.new(3)
3567
+ order[0] = 458
3568
+ order[1] = 459
3569
+ order[2] = 0
3570
+ super(457, 458, order)
3571
+ end
3572
+ end
3573
+
3574
+ class NoUnderlyingStips < Quickfix::Group
3575
+ def initialize
3576
+ order = Quickfix::IntArray.new(3)
3577
+ order[0] = 888
3578
+ order[1] = 889
3579
+ order[2] = 0
3580
+ super(887, 888, order)
3581
+ end
3582
+ end
2787
3583
  end
2788
3584
 
2789
3585
  class NoLegs < Quickfix::Group
@@ -2833,6 +3629,16 @@ class MarketDataRequest < Message
2833
3629
  order[41] = 0
2834
3630
  super(555, 600, order)
2835
3631
  end
3632
+
3633
+ class NoLegSecurityAltID < Quickfix::Group
3634
+ def initialize
3635
+ order = Quickfix::IntArray.new(3)
3636
+ order[0] = 605
3637
+ order[1] = 606
3638
+ order[2] = 0
3639
+ super(604, 605, order)
3640
+ end
3641
+ end
2836
3642
  end
2837
3643
  end
2838
3644
 
@@ -2853,6 +3659,28 @@ class MarketDataSnapshotFullRefresh < Message
2853
3659
  getHeader().setField( Quickfix::MsgType.new("W") )
2854
3660
  end
2855
3661
 
3662
+ class NoSecurityAltID < Quickfix::Group
3663
+ def initialize
3664
+ order = Quickfix::IntArray.new(3)
3665
+ order[0] = 455
3666
+ order[1] = 456
3667
+ order[2] = 0
3668
+ super(454, 455, order)
3669
+ end
3670
+ end
3671
+
3672
+ class NoEvents < Quickfix::Group
3673
+ def initialize
3674
+ order = Quickfix::IntArray.new(5)
3675
+ order[0] = 865
3676
+ order[1] = 866
3677
+ order[2] = 867
3678
+ order[3] = 868
3679
+ order[4] = 0
3680
+ super(864, 865, order)
3681
+ end
3682
+ end
3683
+
2856
3684
  class NoUnderlyings < Quickfix::Group
2857
3685
  def initialize
2858
3686
  order = Quickfix::IntArray.new(46)
@@ -2904,6 +3732,26 @@ class MarketDataSnapshotFullRefresh < Message
2904
3732
  order[45] = 0
2905
3733
  super(711, 311, order)
2906
3734
  end
3735
+
3736
+ class NoUnderlyingSecurityAltID < Quickfix::Group
3737
+ def initialize
3738
+ order = Quickfix::IntArray.new(3)
3739
+ order[0] = 458
3740
+ order[1] = 459
3741
+ order[2] = 0
3742
+ super(457, 458, order)
3743
+ end
3744
+ end
3745
+
3746
+ class NoUnderlyingStips < Quickfix::Group
3747
+ def initialize
3748
+ order = Quickfix::IntArray.new(3)
3749
+ order[0] = 888
3750
+ order[1] = 889
3751
+ order[2] = 0
3752
+ super(887, 888, order)
3753
+ end
3754
+ end
2907
3755
  end
2908
3756
 
2909
3757
  class NoLegs < Quickfix::Group
@@ -2953,6 +3801,16 @@ class MarketDataSnapshotFullRefresh < Message
2953
3801
  order[41] = 0
2954
3802
  super(555, 600, order)
2955
3803
  end
3804
+
3805
+ class NoLegSecurityAltID < Quickfix::Group
3806
+ def initialize
3807
+ order = Quickfix::IntArray.new(3)
3808
+ order[0] = 605
3809
+ order[1] = 606
3810
+ order[2] = 0
3811
+ super(604, 605, order)
3812
+ end
3813
+ end
2956
3814
  end
2957
3815
 
2958
3816
  class NoMDEntries < Quickfix::Group
@@ -3093,6 +3951,28 @@ class MarketDataIncrementalRefresh < Message
3093
3951
  super(268, 279, order)
3094
3952
  end
3095
3953
 
3954
+ class NoSecurityAltID < Quickfix::Group
3955
+ def initialize
3956
+ order = Quickfix::IntArray.new(3)
3957
+ order[0] = 455
3958
+ order[1] = 456
3959
+ order[2] = 0
3960
+ super(454, 455, order)
3961
+ end
3962
+ end
3963
+
3964
+ class NoEvents < Quickfix::Group
3965
+ def initialize
3966
+ order = Quickfix::IntArray.new(5)
3967
+ order[0] = 865
3968
+ order[1] = 866
3969
+ order[2] = 867
3970
+ order[3] = 868
3971
+ order[4] = 0
3972
+ super(864, 865, order)
3973
+ end
3974
+ end
3975
+
3096
3976
  class NoUnderlyings < Quickfix::Group
3097
3977
  def initialize
3098
3978
  order = Quickfix::IntArray.new(46)
@@ -3144,6 +4024,26 @@ class MarketDataIncrementalRefresh < Message
3144
4024
  order[45] = 0
3145
4025
  super(711, 311, order)
3146
4026
  end
4027
+
4028
+ class NoUnderlyingSecurityAltID < Quickfix::Group
4029
+ def initialize
4030
+ order = Quickfix::IntArray.new(3)
4031
+ order[0] = 458
4032
+ order[1] = 459
4033
+ order[2] = 0
4034
+ super(457, 458, order)
4035
+ end
4036
+ end
4037
+
4038
+ class NoUnderlyingStips < Quickfix::Group
4039
+ def initialize
4040
+ order = Quickfix::IntArray.new(3)
4041
+ order[0] = 888
4042
+ order[1] = 889
4043
+ order[2] = 0
4044
+ super(887, 888, order)
4045
+ end
4046
+ end
3147
4047
  end
3148
4048
 
3149
4049
  class NoLegs < Quickfix::Group
@@ -3193,6 +4093,16 @@ class MarketDataIncrementalRefresh < Message
3193
4093
  order[41] = 0
3194
4094
  super(555, 600, order)
3195
4095
  end
4096
+
4097
+ class NoLegSecurityAltID < Quickfix::Group
4098
+ def initialize
4099
+ order = Quickfix::IntArray.new(3)
4100
+ order[0] = 605
4101
+ order[1] = 606
4102
+ order[2] = 0
4103
+ super(604, 605, order)
4104
+ end
4105
+ end
3196
4106
  end
3197
4107
  end
3198
4108
  end
@@ -3300,6 +4210,28 @@ class QuoteCancel < Message
3300
4210
  super(295, 55, order)
3301
4211
  end
3302
4212
 
4213
+ class NoSecurityAltID < Quickfix::Group
4214
+ def initialize
4215
+ order = Quickfix::IntArray.new(3)
4216
+ order[0] = 455
4217
+ order[1] = 456
4218
+ order[2] = 0
4219
+ super(454, 455, order)
4220
+ end
4221
+ end
4222
+
4223
+ class NoEvents < Quickfix::Group
4224
+ def initialize
4225
+ order = Quickfix::IntArray.new(5)
4226
+ order[0] = 865
4227
+ order[1] = 866
4228
+ order[2] = 867
4229
+ order[3] = 868
4230
+ order[4] = 0
4231
+ super(864, 865, order)
4232
+ end
4233
+ end
4234
+
3303
4235
  class NoUnderlyings < Quickfix::Group
3304
4236
  def initialize
3305
4237
  order = Quickfix::IntArray.new(46)
@@ -3351,6 +4283,26 @@ class QuoteCancel < Message
3351
4283
  order[45] = 0
3352
4284
  super(711, 311, order)
3353
4285
  end
4286
+
4287
+ class NoUnderlyingSecurityAltID < Quickfix::Group
4288
+ def initialize
4289
+ order = Quickfix::IntArray.new(3)
4290
+ order[0] = 458
4291
+ order[1] = 459
4292
+ order[2] = 0
4293
+ super(457, 458, order)
4294
+ end
4295
+ end
4296
+
4297
+ class NoUnderlyingStips < Quickfix::Group
4298
+ def initialize
4299
+ order = Quickfix::IntArray.new(3)
4300
+ order[0] = 888
4301
+ order[1] = 889
4302
+ order[2] = 0
4303
+ super(887, 888, order)
4304
+ end
4305
+ end
3354
4306
  end
3355
4307
 
3356
4308
  class NoLegs < Quickfix::Group
@@ -3400,6 +4352,16 @@ class QuoteCancel < Message
3400
4352
  order[41] = 0
3401
4353
  super(555, 600, order)
3402
4354
  end
4355
+
4356
+ class NoLegSecurityAltID < Quickfix::Group
4357
+ def initialize
4358
+ order = Quickfix::IntArray.new(3)
4359
+ order[0] = 605
4360
+ order[1] = 606
4361
+ order[2] = 0
4362
+ super(604, 605, order)
4363
+ end
4364
+ end
3403
4365
  end
3404
4366
  end
3405
4367
  end
@@ -3410,6 +4372,28 @@ class QuoteStatusRequest < Message
3410
4372
  getHeader().setField( Quickfix::MsgType.new("a") )
3411
4373
  end
3412
4374
 
4375
+ class NoSecurityAltID < Quickfix::Group
4376
+ def initialize
4377
+ order = Quickfix::IntArray.new(3)
4378
+ order[0] = 455
4379
+ order[1] = 456
4380
+ order[2] = 0
4381
+ super(454, 455, order)
4382
+ end
4383
+ end
4384
+
4385
+ class NoEvents < Quickfix::Group
4386
+ def initialize
4387
+ order = Quickfix::IntArray.new(5)
4388
+ order[0] = 865
4389
+ order[1] = 866
4390
+ order[2] = 867
4391
+ order[3] = 868
4392
+ order[4] = 0
4393
+ super(864, 865, order)
4394
+ end
4395
+ end
4396
+
3413
4397
  class NoUnderlyings < Quickfix::Group
3414
4398
  def initialize
3415
4399
  order = Quickfix::IntArray.new(46)
@@ -3461,6 +4445,26 @@ class QuoteStatusRequest < Message
3461
4445
  order[45] = 0
3462
4446
  super(711, 311, order)
3463
4447
  end
4448
+
4449
+ class NoUnderlyingSecurityAltID < Quickfix::Group
4450
+ def initialize
4451
+ order = Quickfix::IntArray.new(3)
4452
+ order[0] = 458
4453
+ order[1] = 459
4454
+ order[2] = 0
4455
+ super(457, 458, order)
4456
+ end
4457
+ end
4458
+
4459
+ class NoUnderlyingStips < Quickfix::Group
4460
+ def initialize
4461
+ order = Quickfix::IntArray.new(3)
4462
+ order[0] = 888
4463
+ order[1] = 889
4464
+ order[2] = 0
4465
+ super(887, 888, order)
4466
+ end
4467
+ end
3464
4468
  end
3465
4469
 
3466
4470
  class NoLegs < Quickfix::Group
@@ -3510,6 +4514,16 @@ class QuoteStatusRequest < Message
3510
4514
  order[41] = 0
3511
4515
  super(555, 600, order)
3512
4516
  end
4517
+
4518
+ class NoLegSecurityAltID < Quickfix::Group
4519
+ def initialize
4520
+ order = Quickfix::IntArray.new(3)
4521
+ order[0] = 605
4522
+ order[1] = 606
4523
+ order[2] = 0
4524
+ super(604, 605, order)
4525
+ end
4526
+ end
3513
4527
  end
3514
4528
 
3515
4529
  class NoPartyIDs < Quickfix::Group
@@ -3619,6 +4633,26 @@ class MassQuoteAcknowledgement < Message
3619
4633
  super(296, 302, order)
3620
4634
  end
3621
4635
 
4636
+ class NoUnderlyingSecurityAltID < Quickfix::Group
4637
+ def initialize
4638
+ order = Quickfix::IntArray.new(3)
4639
+ order[0] = 458
4640
+ order[1] = 459
4641
+ order[2] = 0
4642
+ super(457, 458, order)
4643
+ end
4644
+ end
4645
+
4646
+ class NoUnderlyingStips < Quickfix::Group
4647
+ def initialize
4648
+ order = Quickfix::IntArray.new(3)
4649
+ order[0] = 888
4650
+ order[1] = 889
4651
+ order[2] = 0
4652
+ super(887, 888, order)
4653
+ end
4654
+ end
4655
+
3622
4656
  class NoQuoteEntries < Quickfix::Group
3623
4657
  def initialize
3624
4658
  order = Quickfix::IntArray.new(68)
@@ -3693,6 +4727,28 @@ class MassQuoteAcknowledgement < Message
3693
4727
  super(295, 299, order)
3694
4728
  end
3695
4729
 
4730
+ class NoSecurityAltID < Quickfix::Group
4731
+ def initialize
4732
+ order = Quickfix::IntArray.new(3)
4733
+ order[0] = 455
4734
+ order[1] = 456
4735
+ order[2] = 0
4736
+ super(454, 455, order)
4737
+ end
4738
+ end
4739
+
4740
+ class NoEvents < Quickfix::Group
4741
+ def initialize
4742
+ order = Quickfix::IntArray.new(5)
4743
+ order[0] = 865
4744
+ order[1] = 866
4745
+ order[2] = 867
4746
+ order[3] = 868
4747
+ order[4] = 0
4748
+ super(864, 865, order)
4749
+ end
4750
+ end
4751
+
3696
4752
  class NoLegs < Quickfix::Group
3697
4753
  def initialize
3698
4754
  order = Quickfix::IntArray.new(42)
@@ -3740,6 +4796,16 @@ class MassQuoteAcknowledgement < Message
3740
4796
  order[41] = 0
3741
4797
  super(555, 600, order)
3742
4798
  end
4799
+
4800
+ class NoLegSecurityAltID < Quickfix::Group
4801
+ def initialize
4802
+ order = Quickfix::IntArray.new(3)
4803
+ order[0] = 605
4804
+ order[1] = 606
4805
+ order[2] = 0
4806
+ super(604, 605, order)
4807
+ end
4808
+ end
3743
4809
  end
3744
4810
  end
3745
4811
  end
@@ -3751,6 +4817,38 @@ class SecurityDefinitionRequest < Message
3751
4817
  getHeader().setField( Quickfix::MsgType.new("c") )
3752
4818
  end
3753
4819
 
4820
+ class NoSecurityAltID < Quickfix::Group
4821
+ def initialize
4822
+ order = Quickfix::IntArray.new(3)
4823
+ order[0] = 455
4824
+ order[1] = 456
4825
+ order[2] = 0
4826
+ super(454, 455, order)
4827
+ end
4828
+ end
4829
+
4830
+ class NoEvents < Quickfix::Group
4831
+ def initialize
4832
+ order = Quickfix::IntArray.new(5)
4833
+ order[0] = 865
4834
+ order[1] = 866
4835
+ order[2] = 867
4836
+ order[3] = 868
4837
+ order[4] = 0
4838
+ super(864, 865, order)
4839
+ end
4840
+ end
4841
+
4842
+ class NoInstrAttrib < Quickfix::Group
4843
+ def initialize
4844
+ order = Quickfix::IntArray.new(3)
4845
+ order[0] = 871
4846
+ order[1] = 872
4847
+ order[2] = 0
4848
+ super(870, 871, order)
4849
+ end
4850
+ end
4851
+
3754
4852
  class NoUnderlyings < Quickfix::Group
3755
4853
  def initialize
3756
4854
  order = Quickfix::IntArray.new(46)
@@ -3802,6 +4900,26 @@ class SecurityDefinitionRequest < Message
3802
4900
  order[45] = 0
3803
4901
  super(711, 311, order)
3804
4902
  end
4903
+
4904
+ class NoUnderlyingSecurityAltID < Quickfix::Group
4905
+ def initialize
4906
+ order = Quickfix::IntArray.new(3)
4907
+ order[0] = 458
4908
+ order[1] = 459
4909
+ order[2] = 0
4910
+ super(457, 458, order)
4911
+ end
4912
+ end
4913
+
4914
+ class NoUnderlyingStips < Quickfix::Group
4915
+ def initialize
4916
+ order = Quickfix::IntArray.new(3)
4917
+ order[0] = 888
4918
+ order[1] = 889
4919
+ order[2] = 0
4920
+ super(887, 888, order)
4921
+ end
4922
+ end
3805
4923
  end
3806
4924
 
3807
4925
  class NoLegs < Quickfix::Group
@@ -3851,6 +4969,16 @@ class SecurityDefinitionRequest < Message
3851
4969
  order[41] = 0
3852
4970
  super(555, 600, order)
3853
4971
  end
4972
+
4973
+ class NoLegSecurityAltID < Quickfix::Group
4974
+ def initialize
4975
+ order = Quickfix::IntArray.new(3)
4976
+ order[0] = 605
4977
+ order[1] = 606
4978
+ order[2] = 0
4979
+ super(604, 605, order)
4980
+ end
4981
+ end
3854
4982
  end
3855
4983
  end
3856
4984
 
@@ -3860,6 +4988,38 @@ class SecurityDefinition < Message
3860
4988
  getHeader().setField( Quickfix::MsgType.new("d") )
3861
4989
  end
3862
4990
 
4991
+ class NoSecurityAltID < Quickfix::Group
4992
+ def initialize
4993
+ order = Quickfix::IntArray.new(3)
4994
+ order[0] = 455
4995
+ order[1] = 456
4996
+ order[2] = 0
4997
+ super(454, 455, order)
4998
+ end
4999
+ end
5000
+
5001
+ class NoEvents < Quickfix::Group
5002
+ def initialize
5003
+ order = Quickfix::IntArray.new(5)
5004
+ order[0] = 865
5005
+ order[1] = 866
5006
+ order[2] = 867
5007
+ order[3] = 868
5008
+ order[4] = 0
5009
+ super(864, 865, order)
5010
+ end
5011
+ end
5012
+
5013
+ class NoInstrAttrib < Quickfix::Group
5014
+ def initialize
5015
+ order = Quickfix::IntArray.new(3)
5016
+ order[0] = 871
5017
+ order[1] = 872
5018
+ order[2] = 0
5019
+ super(870, 871, order)
5020
+ end
5021
+ end
5022
+
3863
5023
  class NoUnderlyings < Quickfix::Group
3864
5024
  def initialize
3865
5025
  order = Quickfix::IntArray.new(46)
@@ -3911,6 +5071,26 @@ class SecurityDefinition < Message
3911
5071
  order[45] = 0
3912
5072
  super(711, 311, order)
3913
5073
  end
5074
+
5075
+ class NoUnderlyingSecurityAltID < Quickfix::Group
5076
+ def initialize
5077
+ order = Quickfix::IntArray.new(3)
5078
+ order[0] = 458
5079
+ order[1] = 459
5080
+ order[2] = 0
5081
+ super(457, 458, order)
5082
+ end
5083
+ end
5084
+
5085
+ class NoUnderlyingStips < Quickfix::Group
5086
+ def initialize
5087
+ order = Quickfix::IntArray.new(3)
5088
+ order[0] = 888
5089
+ order[1] = 889
5090
+ order[2] = 0
5091
+ super(887, 888, order)
5092
+ end
5093
+ end
3914
5094
  end
3915
5095
 
3916
5096
  class NoLegs < Quickfix::Group
@@ -3960,6 +5140,16 @@ class SecurityDefinition < Message
3960
5140
  order[41] = 0
3961
5141
  super(555, 600, order)
3962
5142
  end
5143
+
5144
+ class NoLegSecurityAltID < Quickfix::Group
5145
+ def initialize
5146
+ order = Quickfix::IntArray.new(3)
5147
+ order[0] = 605
5148
+ order[1] = 606
5149
+ order[2] = 0
5150
+ super(604, 605, order)
5151
+ end
5152
+ end
3963
5153
  end
3964
5154
  end
3965
5155
 
@@ -3969,6 +5159,38 @@ class SecurityStatusRequest < Message
3969
5159
  getHeader().setField( Quickfix::MsgType.new("e") )
3970
5160
  end
3971
5161
 
5162
+ class NoSecurityAltID < Quickfix::Group
5163
+ def initialize
5164
+ order = Quickfix::IntArray.new(3)
5165
+ order[0] = 455
5166
+ order[1] = 456
5167
+ order[2] = 0
5168
+ super(454, 455, order)
5169
+ end
5170
+ end
5171
+
5172
+ class NoEvents < Quickfix::Group
5173
+ def initialize
5174
+ order = Quickfix::IntArray.new(5)
5175
+ order[0] = 865
5176
+ order[1] = 866
5177
+ order[2] = 867
5178
+ order[3] = 868
5179
+ order[4] = 0
5180
+ super(864, 865, order)
5181
+ end
5182
+ end
5183
+
5184
+ class NoInstrAttrib < Quickfix::Group
5185
+ def initialize
5186
+ order = Quickfix::IntArray.new(3)
5187
+ order[0] = 871
5188
+ order[1] = 872
5189
+ order[2] = 0
5190
+ super(870, 871, order)
5191
+ end
5192
+ end
5193
+
3972
5194
  class NoUnderlyings < Quickfix::Group
3973
5195
  def initialize
3974
5196
  order = Quickfix::IntArray.new(46)
@@ -4020,6 +5242,26 @@ class SecurityStatusRequest < Message
4020
5242
  order[45] = 0
4021
5243
  super(711, 311, order)
4022
5244
  end
5245
+
5246
+ class NoUnderlyingSecurityAltID < Quickfix::Group
5247
+ def initialize
5248
+ order = Quickfix::IntArray.new(3)
5249
+ order[0] = 458
5250
+ order[1] = 459
5251
+ order[2] = 0
5252
+ super(457, 458, order)
5253
+ end
5254
+ end
5255
+
5256
+ class NoUnderlyingStips < Quickfix::Group
5257
+ def initialize
5258
+ order = Quickfix::IntArray.new(3)
5259
+ order[0] = 888
5260
+ order[1] = 889
5261
+ order[2] = 0
5262
+ super(887, 888, order)
5263
+ end
5264
+ end
4023
5265
  end
4024
5266
 
4025
5267
  class NoLegs < Quickfix::Group
@@ -4069,6 +5311,16 @@ class SecurityStatusRequest < Message
4069
5311
  order[41] = 0
4070
5312
  super(555, 600, order)
4071
5313
  end
5314
+
5315
+ class NoLegSecurityAltID < Quickfix::Group
5316
+ def initialize
5317
+ order = Quickfix::IntArray.new(3)
5318
+ order[0] = 605
5319
+ order[1] = 606
5320
+ order[2] = 0
5321
+ super(604, 605, order)
5322
+ end
5323
+ end
4072
5324
  end
4073
5325
  end
4074
5326
 
@@ -4078,6 +5330,38 @@ class SecurityStatus < Message
4078
5330
  getHeader().setField( Quickfix::MsgType.new("f") )
4079
5331
  end
4080
5332
 
5333
+ class NoSecurityAltID < Quickfix::Group
5334
+ def initialize
5335
+ order = Quickfix::IntArray.new(3)
5336
+ order[0] = 455
5337
+ order[1] = 456
5338
+ order[2] = 0
5339
+ super(454, 455, order)
5340
+ end
5341
+ end
5342
+
5343
+ class NoEvents < Quickfix::Group
5344
+ def initialize
5345
+ order = Quickfix::IntArray.new(5)
5346
+ order[0] = 865
5347
+ order[1] = 866
5348
+ order[2] = 867
5349
+ order[3] = 868
5350
+ order[4] = 0
5351
+ super(864, 865, order)
5352
+ end
5353
+ end
5354
+
5355
+ class NoInstrAttrib < Quickfix::Group
5356
+ def initialize
5357
+ order = Quickfix::IntArray.new(3)
5358
+ order[0] = 871
5359
+ order[1] = 872
5360
+ order[2] = 0
5361
+ super(870, 871, order)
5362
+ end
5363
+ end
5364
+
4081
5365
  class NoUnderlyings < Quickfix::Group
4082
5366
  def initialize
4083
5367
  order = Quickfix::IntArray.new(46)
@@ -4129,6 +5413,26 @@ class SecurityStatus < Message
4129
5413
  order[45] = 0
4130
5414
  super(711, 311, order)
4131
5415
  end
5416
+
5417
+ class NoUnderlyingSecurityAltID < Quickfix::Group
5418
+ def initialize
5419
+ order = Quickfix::IntArray.new(3)
5420
+ order[0] = 458
5421
+ order[1] = 459
5422
+ order[2] = 0
5423
+ super(457, 458, order)
5424
+ end
5425
+ end
5426
+
5427
+ class NoUnderlyingStips < Quickfix::Group
5428
+ def initialize
5429
+ order = Quickfix::IntArray.new(3)
5430
+ order[0] = 888
5431
+ order[1] = 889
5432
+ order[2] = 0
5433
+ super(887, 888, order)
5434
+ end
5435
+ end
4132
5436
  end
4133
5437
 
4134
5438
  class NoLegs < Quickfix::Group
@@ -4178,6 +5482,16 @@ class SecurityStatus < Message
4178
5482
  order[41] = 0
4179
5483
  super(555, 600, order)
4180
5484
  end
5485
+
5486
+ class NoLegSecurityAltID < Quickfix::Group
5487
+ def initialize
5488
+ order = Quickfix::IntArray.new(3)
5489
+ order[0] = 605
5490
+ order[1] = 606
5491
+ order[2] = 0
5492
+ super(604, 605, order)
5493
+ end
5494
+ end
4181
5495
  end
4182
5496
  end
4183
5497
 
@@ -4280,6 +5594,26 @@ class MassQuote < Message
4280
5594
  super(296, 302, order)
4281
5595
  end
4282
5596
 
5597
+ class NoUnderlyingSecurityAltID < Quickfix::Group
5598
+ def initialize
5599
+ order = Quickfix::IntArray.new(3)
5600
+ order[0] = 458
5601
+ order[1] = 459
5602
+ order[2] = 0
5603
+ super(457, 458, order)
5604
+ end
5605
+ end
5606
+
5607
+ class NoUnderlyingStips < Quickfix::Group
5608
+ def initialize
5609
+ order = Quickfix::IntArray.new(3)
5610
+ order[0] = 888
5611
+ order[1] = 889
5612
+ order[2] = 0
5613
+ super(887, 888, order)
5614
+ end
5615
+ end
5616
+
4283
5617
  class NoQuoteEntries < Quickfix::Group
4284
5618
  def initialize
4285
5619
  order = Quickfix::IntArray.new(67)
@@ -4353,6 +5687,28 @@ class MassQuote < Message
4353
5687
  super(295, 299, order)
4354
5688
  end
4355
5689
 
5690
+ class NoSecurityAltID < Quickfix::Group
5691
+ def initialize
5692
+ order = Quickfix::IntArray.new(3)
5693
+ order[0] = 455
5694
+ order[1] = 456
5695
+ order[2] = 0
5696
+ super(454, 455, order)
5697
+ end
5698
+ end
5699
+
5700
+ class NoEvents < Quickfix::Group
5701
+ def initialize
5702
+ order = Quickfix::IntArray.new(5)
5703
+ order[0] = 865
5704
+ order[1] = 866
5705
+ order[2] = 867
5706
+ order[3] = 868
5707
+ order[4] = 0
5708
+ super(864, 865, order)
5709
+ end
5710
+ end
5711
+
4356
5712
  class NoLegs < Quickfix::Group
4357
5713
  def initialize
4358
5714
  order = Quickfix::IntArray.new(42)
@@ -4400,6 +5756,16 @@ class MassQuote < Message
4400
5756
  order[41] = 0
4401
5757
  super(555, 600, order)
4402
5758
  end
5759
+
5760
+ class NoLegSecurityAltID < Quickfix::Group
5761
+ def initialize
5762
+ order = Quickfix::IntArray.new(3)
5763
+ order[0] = 605
5764
+ order[1] = 606
5765
+ order[2] = 0
5766
+ super(604, 605, order)
5767
+ end
5768
+ end
4403
5769
  end
4404
5770
  end
4405
5771
  end
@@ -4541,6 +5907,28 @@ class ListStrikePrice < Message
4541
5907
  order[41] = 0
4542
5908
  super(428, 55, order)
4543
5909
  end
5910
+
5911
+ class NoSecurityAltID < Quickfix::Group
5912
+ def initialize
5913
+ order = Quickfix::IntArray.new(3)
5914
+ order[0] = 455
5915
+ order[1] = 456
5916
+ order[2] = 0
5917
+ super(454, 455, order)
5918
+ end
5919
+ end
5920
+
5921
+ class NoEvents < Quickfix::Group
5922
+ def initialize
5923
+ order = Quickfix::IntArray.new(5)
5924
+ order[0] = 865
5925
+ order[1] = 866
5926
+ order[2] = 867
5927
+ order[3] = 868
5928
+ order[4] = 0
5929
+ super(864, 865, order)
5930
+ end
5931
+ end
4544
5932
  end
4545
5933
 
4546
5934
  class NoUnderlyings < Quickfix::Group
@@ -4603,6 +5991,26 @@ class ListStrikePrice < Message
4603
5991
  order[54] = 0
4604
5992
  super(711, 311, order)
4605
5993
  end
5994
+
5995
+ class NoUnderlyingSecurityAltID < Quickfix::Group
5996
+ def initialize
5997
+ order = Quickfix::IntArray.new(3)
5998
+ order[0] = 458
5999
+ order[1] = 459
6000
+ order[2] = 0
6001
+ super(457, 458, order)
6002
+ end
6003
+ end
6004
+
6005
+ class NoUnderlyingStips < Quickfix::Group
6006
+ def initialize
6007
+ order = Quickfix::IntArray.new(3)
6008
+ order[0] = 888
6009
+ order[1] = 889
6010
+ order[2] = 0
6011
+ super(887, 888, order)
6012
+ end
6013
+ end
4606
6014
  end
4607
6015
  end
4608
6016
 
@@ -4730,6 +6138,48 @@ class OrderMassCancelRequest < Message
4730
6138
  super
4731
6139
  getHeader().setField( Quickfix::MsgType.new("q") )
4732
6140
  end
6141
+
6142
+ class NoSecurityAltID < Quickfix::Group
6143
+ def initialize
6144
+ order = Quickfix::IntArray.new(3)
6145
+ order[0] = 455
6146
+ order[1] = 456
6147
+ order[2] = 0
6148
+ super(454, 455, order)
6149
+ end
6150
+ end
6151
+
6152
+ class NoEvents < Quickfix::Group
6153
+ def initialize
6154
+ order = Quickfix::IntArray.new(5)
6155
+ order[0] = 865
6156
+ order[1] = 866
6157
+ order[2] = 867
6158
+ order[3] = 868
6159
+ order[4] = 0
6160
+ super(864, 865, order)
6161
+ end
6162
+ end
6163
+
6164
+ class NoUnderlyingSecurityAltID < Quickfix::Group
6165
+ def initialize
6166
+ order = Quickfix::IntArray.new(3)
6167
+ order[0] = 458
6168
+ order[1] = 459
6169
+ order[2] = 0
6170
+ super(457, 458, order)
6171
+ end
6172
+ end
6173
+
6174
+ class NoUnderlyingStips < Quickfix::Group
6175
+ def initialize
6176
+ order = Quickfix::IntArray.new(3)
6177
+ order[0] = 888
6178
+ order[1] = 889
6179
+ order[2] = 0
6180
+ super(887, 888, order)
6181
+ end
6182
+ end
4733
6183
  end
4734
6184
 
4735
6185
  class OrderMassCancelReport < Message
@@ -4748,6 +6198,48 @@ class OrderMassCancelReport < Message
4748
6198
  super(534, 41, order)
4749
6199
  end
4750
6200
  end
6201
+
6202
+ class NoSecurityAltID < Quickfix::Group
6203
+ def initialize
6204
+ order = Quickfix::IntArray.new(3)
6205
+ order[0] = 455
6206
+ order[1] = 456
6207
+ order[2] = 0
6208
+ super(454, 455, order)
6209
+ end
6210
+ end
6211
+
6212
+ class NoEvents < Quickfix::Group
6213
+ def initialize
6214
+ order = Quickfix::IntArray.new(5)
6215
+ order[0] = 865
6216
+ order[1] = 866
6217
+ order[2] = 867
6218
+ order[3] = 868
6219
+ order[4] = 0
6220
+ super(864, 865, order)
6221
+ end
6222
+ end
6223
+
6224
+ class NoUnderlyingSecurityAltID < Quickfix::Group
6225
+ def initialize
6226
+ order = Quickfix::IntArray.new(3)
6227
+ order[0] = 458
6228
+ order[1] = 459
6229
+ order[2] = 0
6230
+ super(457, 458, order)
6231
+ end
6232
+ end
6233
+
6234
+ class NoUnderlyingStips < Quickfix::Group
6235
+ def initialize
6236
+ order = Quickfix::IntArray.new(3)
6237
+ order[0] = 888
6238
+ order[1] = 889
6239
+ order[2] = 0
6240
+ super(887, 888, order)
6241
+ end
6242
+ end
4751
6243
  end
4752
6244
 
4753
6245
  class NewOrderCross < Message
@@ -4862,6 +6354,28 @@ class NewOrderCross < Message
4862
6354
  end
4863
6355
  end
4864
6356
 
6357
+ class NoSecurityAltID < Quickfix::Group
6358
+ def initialize
6359
+ order = Quickfix::IntArray.new(3)
6360
+ order[0] = 455
6361
+ order[1] = 456
6362
+ order[2] = 0
6363
+ super(454, 455, order)
6364
+ end
6365
+ end
6366
+
6367
+ class NoEvents < Quickfix::Group
6368
+ def initialize
6369
+ order = Quickfix::IntArray.new(5)
6370
+ order[0] = 865
6371
+ order[1] = 866
6372
+ order[2] = 867
6373
+ order[3] = 868
6374
+ order[4] = 0
6375
+ super(864, 865, order)
6376
+ end
6377
+ end
6378
+
4865
6379
  class NoUnderlyings < Quickfix::Group
4866
6380
  def initialize
4867
6381
  order = Quickfix::IntArray.new(46)
@@ -4913,6 +6427,26 @@ class NewOrderCross < Message
4913
6427
  order[45] = 0
4914
6428
  super(711, 311, order)
4915
6429
  end
6430
+
6431
+ class NoUnderlyingSecurityAltID < Quickfix::Group
6432
+ def initialize
6433
+ order = Quickfix::IntArray.new(3)
6434
+ order[0] = 458
6435
+ order[1] = 459
6436
+ order[2] = 0
6437
+ super(457, 458, order)
6438
+ end
6439
+ end
6440
+
6441
+ class NoUnderlyingStips < Quickfix::Group
6442
+ def initialize
6443
+ order = Quickfix::IntArray.new(3)
6444
+ order[0] = 888
6445
+ order[1] = 889
6446
+ order[2] = 0
6447
+ super(887, 888, order)
6448
+ end
6449
+ end
4916
6450
  end
4917
6451
 
4918
6452
  class NoLegs < Quickfix::Group
@@ -4962,6 +6496,16 @@ class NewOrderCross < Message
4962
6496
  order[41] = 0
4963
6497
  super(555, 600, order)
4964
6498
  end
6499
+
6500
+ class NoLegSecurityAltID < Quickfix::Group
6501
+ def initialize
6502
+ order = Quickfix::IntArray.new(3)
6503
+ order[0] = 605
6504
+ order[1] = 606
6505
+ order[2] = 0
6506
+ super(604, 605, order)
6507
+ end
6508
+ end
4965
6509
  end
4966
6510
 
4967
6511
  class NoTradingSessions < Quickfix::Group
@@ -5097,6 +6641,28 @@ class CrossOrderCancelReplaceRequest < Message
5097
6641
  end
5098
6642
  end
5099
6643
 
6644
+ class NoSecurityAltID < Quickfix::Group
6645
+ def initialize
6646
+ order = Quickfix::IntArray.new(3)
6647
+ order[0] = 455
6648
+ order[1] = 456
6649
+ order[2] = 0
6650
+ super(454, 455, order)
6651
+ end
6652
+ end
6653
+
6654
+ class NoEvents < Quickfix::Group
6655
+ def initialize
6656
+ order = Quickfix::IntArray.new(5)
6657
+ order[0] = 865
6658
+ order[1] = 866
6659
+ order[2] = 867
6660
+ order[3] = 868
6661
+ order[4] = 0
6662
+ super(864, 865, order)
6663
+ end
6664
+ end
6665
+
5100
6666
  class NoUnderlyings < Quickfix::Group
5101
6667
  def initialize
5102
6668
  order = Quickfix::IntArray.new(46)
@@ -5148,6 +6714,26 @@ class CrossOrderCancelReplaceRequest < Message
5148
6714
  order[45] = 0
5149
6715
  super(711, 311, order)
5150
6716
  end
6717
+
6718
+ class NoUnderlyingSecurityAltID < Quickfix::Group
6719
+ def initialize
6720
+ order = Quickfix::IntArray.new(3)
6721
+ order[0] = 458
6722
+ order[1] = 459
6723
+ order[2] = 0
6724
+ super(457, 458, order)
6725
+ end
6726
+ end
6727
+
6728
+ class NoUnderlyingStips < Quickfix::Group
6729
+ def initialize
6730
+ order = Quickfix::IntArray.new(3)
6731
+ order[0] = 888
6732
+ order[1] = 889
6733
+ order[2] = 0
6734
+ super(887, 888, order)
6735
+ end
6736
+ end
5151
6737
  end
5152
6738
 
5153
6739
  class NoLegs < Quickfix::Group
@@ -5197,6 +6783,16 @@ class CrossOrderCancelReplaceRequest < Message
5197
6783
  order[41] = 0
5198
6784
  super(555, 600, order)
5199
6785
  end
6786
+
6787
+ class NoLegSecurityAltID < Quickfix::Group
6788
+ def initialize
6789
+ order = Quickfix::IntArray.new(3)
6790
+ order[0] = 605
6791
+ order[1] = 606
6792
+ order[2] = 0
6793
+ super(604, 605, order)
6794
+ end
6795
+ end
5200
6796
  end
5201
6797
 
5202
6798
  class NoTradingSessions < Quickfix::Group
@@ -5274,6 +6870,28 @@ class CrossOrderCancelRequest < Message
5274
6870
  end
5275
6871
  end
5276
6872
 
6873
+ class NoSecurityAltID < Quickfix::Group
6874
+ def initialize
6875
+ order = Quickfix::IntArray.new(3)
6876
+ order[0] = 455
6877
+ order[1] = 456
6878
+ order[2] = 0
6879
+ super(454, 455, order)
6880
+ end
6881
+ end
6882
+
6883
+ class NoEvents < Quickfix::Group
6884
+ def initialize
6885
+ order = Quickfix::IntArray.new(5)
6886
+ order[0] = 865
6887
+ order[1] = 866
6888
+ order[2] = 867
6889
+ order[3] = 868
6890
+ order[4] = 0
6891
+ super(864, 865, order)
6892
+ end
6893
+ end
6894
+
5277
6895
  class NoUnderlyings < Quickfix::Group
5278
6896
  def initialize
5279
6897
  order = Quickfix::IntArray.new(46)
@@ -5325,6 +6943,26 @@ class CrossOrderCancelRequest < Message
5325
6943
  order[45] = 0
5326
6944
  super(711, 311, order)
5327
6945
  end
6946
+
6947
+ class NoUnderlyingSecurityAltID < Quickfix::Group
6948
+ def initialize
6949
+ order = Quickfix::IntArray.new(3)
6950
+ order[0] = 458
6951
+ order[1] = 459
6952
+ order[2] = 0
6953
+ super(457, 458, order)
6954
+ end
6955
+ end
6956
+
6957
+ class NoUnderlyingStips < Quickfix::Group
6958
+ def initialize
6959
+ order = Quickfix::IntArray.new(3)
6960
+ order[0] = 888
6961
+ order[1] = 889
6962
+ order[2] = 0
6963
+ super(887, 888, order)
6964
+ end
6965
+ end
5328
6966
  end
5329
6967
 
5330
6968
  class NoLegs < Quickfix::Group
@@ -5374,6 +7012,16 @@ class CrossOrderCancelRequest < Message
5374
7012
  order[41] = 0
5375
7013
  super(555, 600, order)
5376
7014
  end
7015
+
7016
+ class NoLegSecurityAltID < Quickfix::Group
7017
+ def initialize
7018
+ order = Quickfix::IntArray.new(3)
7019
+ order[0] = 605
7020
+ order[1] = 606
7021
+ order[2] = 0
7022
+ super(604, 605, order)
7023
+ end
7024
+ end
5377
7025
  end
5378
7026
  end
5379
7027
 
@@ -5409,6 +7057,38 @@ class SecurityListRequest < Message
5409
7057
  getHeader().setField( Quickfix::MsgType.new("x") )
5410
7058
  end
5411
7059
 
7060
+ class NoSecurityAltID < Quickfix::Group
7061
+ def initialize
7062
+ order = Quickfix::IntArray.new(3)
7063
+ order[0] = 455
7064
+ order[1] = 456
7065
+ order[2] = 0
7066
+ super(454, 455, order)
7067
+ end
7068
+ end
7069
+
7070
+ class NoEvents < Quickfix::Group
7071
+ def initialize
7072
+ order = Quickfix::IntArray.new(5)
7073
+ order[0] = 865
7074
+ order[1] = 866
7075
+ order[2] = 867
7076
+ order[3] = 868
7077
+ order[4] = 0
7078
+ super(864, 865, order)
7079
+ end
7080
+ end
7081
+
7082
+ class NoInstrAttrib < Quickfix::Group
7083
+ def initialize
7084
+ order = Quickfix::IntArray.new(3)
7085
+ order[0] = 871
7086
+ order[1] = 872
7087
+ order[2] = 0
7088
+ super(870, 871, order)
7089
+ end
7090
+ end
7091
+
5412
7092
  class NoUnderlyings < Quickfix::Group
5413
7093
  def initialize
5414
7094
  order = Quickfix::IntArray.new(46)
@@ -5460,6 +7140,26 @@ class SecurityListRequest < Message
5460
7140
  order[45] = 0
5461
7141
  super(711, 311, order)
5462
7142
  end
7143
+
7144
+ class NoUnderlyingSecurityAltID < Quickfix::Group
7145
+ def initialize
7146
+ order = Quickfix::IntArray.new(3)
7147
+ order[0] = 458
7148
+ order[1] = 459
7149
+ order[2] = 0
7150
+ super(457, 458, order)
7151
+ end
7152
+ end
7153
+
7154
+ class NoUnderlyingStips < Quickfix::Group
7155
+ def initialize
7156
+ order = Quickfix::IntArray.new(3)
7157
+ order[0] = 888
7158
+ order[1] = 889
7159
+ order[2] = 0
7160
+ super(887, 888, order)
7161
+ end
7162
+ end
5463
7163
  end
5464
7164
 
5465
7165
  class NoLegs < Quickfix::Group
@@ -5509,6 +7209,16 @@ class SecurityListRequest < Message
5509
7209
  order[41] = 0
5510
7210
  super(555, 600, order)
5511
7211
  end
7212
+
7213
+ class NoLegSecurityAltID < Quickfix::Group
7214
+ def initialize
7215
+ order = Quickfix::IntArray.new(3)
7216
+ order[0] = 605
7217
+ order[1] = 606
7218
+ order[2] = 0
7219
+ super(604, 605, order)
7220
+ end
7221
+ end
5512
7222
  end
5513
7223
  end
5514
7224
 
@@ -5603,6 +7313,38 @@ class SecurityList < Message
5603
7313
  super(146, 55, order)
5604
7314
  end
5605
7315
 
7316
+ class NoSecurityAltID < Quickfix::Group
7317
+ def initialize
7318
+ order = Quickfix::IntArray.new(3)
7319
+ order[0] = 455
7320
+ order[1] = 456
7321
+ order[2] = 0
7322
+ super(454, 455, order)
7323
+ end
7324
+ end
7325
+
7326
+ class NoEvents < Quickfix::Group
7327
+ def initialize
7328
+ order = Quickfix::IntArray.new(5)
7329
+ order[0] = 865
7330
+ order[1] = 866
7331
+ order[2] = 867
7332
+ order[3] = 868
7333
+ order[4] = 0
7334
+ super(864, 865, order)
7335
+ end
7336
+ end
7337
+
7338
+ class NoInstrAttrib < Quickfix::Group
7339
+ def initialize
7340
+ order = Quickfix::IntArray.new(3)
7341
+ order[0] = 871
7342
+ order[1] = 872
7343
+ order[2] = 0
7344
+ super(870, 871, order)
7345
+ end
7346
+ end
7347
+
5606
7348
  class NoUnderlyings < Quickfix::Group
5607
7349
  def initialize
5608
7350
  order = Quickfix::IntArray.new(46)
@@ -5654,6 +7396,26 @@ class SecurityList < Message
5654
7396
  order[45] = 0
5655
7397
  super(711, 311, order)
5656
7398
  end
7399
+
7400
+ class NoUnderlyingSecurityAltID < Quickfix::Group
7401
+ def initialize
7402
+ order = Quickfix::IntArray.new(3)
7403
+ order[0] = 458
7404
+ order[1] = 459
7405
+ order[2] = 0
7406
+ super(457, 458, order)
7407
+ end
7408
+ end
7409
+
7410
+ class NoUnderlyingStips < Quickfix::Group
7411
+ def initialize
7412
+ order = Quickfix::IntArray.new(3)
7413
+ order[0] = 888
7414
+ order[1] = 889
7415
+ order[2] = 0
7416
+ super(887, 888, order)
7417
+ end
7418
+ end
5657
7419
  end
5658
7420
 
5659
7421
  class NoStipulations < Quickfix::Group
@@ -5722,6 +7484,16 @@ class SecurityList < Message
5722
7484
  super(555, 600, order)
5723
7485
  end
5724
7486
 
7487
+ class NoLegSecurityAltID < Quickfix::Group
7488
+ def initialize
7489
+ order = Quickfix::IntArray.new(3)
7490
+ order[0] = 605
7491
+ order[1] = 606
7492
+ order[2] = 0
7493
+ super(604, 605, order)
7494
+ end
7495
+ end
7496
+
5725
7497
  class NoLegStipulations < Quickfix::Group
5726
7498
  def initialize
5727
7499
  order = Quickfix::IntArray.new(3)
@@ -5740,6 +7512,26 @@ class DerivativeSecurityListRequest < Message
5740
7512
  super
5741
7513
  getHeader().setField( Quickfix::MsgType.new("z") )
5742
7514
  end
7515
+
7516
+ class NoUnderlyingSecurityAltID < Quickfix::Group
7517
+ def initialize
7518
+ order = Quickfix::IntArray.new(3)
7519
+ order[0] = 458
7520
+ order[1] = 459
7521
+ order[2] = 0
7522
+ super(457, 458, order)
7523
+ end
7524
+ end
7525
+
7526
+ class NoUnderlyingStips < Quickfix::Group
7527
+ def initialize
7528
+ order = Quickfix::IntArray.new(3)
7529
+ order[0] = 888
7530
+ order[1] = 889
7531
+ order[2] = 0
7532
+ super(887, 888, order)
7533
+ end
7534
+ end
5743
7535
  end
5744
7536
 
5745
7537
  class DerivativeSecurityList < Message
@@ -5748,6 +7540,26 @@ class DerivativeSecurityList < Message
5748
7540
  getHeader().setField( Quickfix::MsgType.new("AA") )
5749
7541
  end
5750
7542
 
7543
+ class NoUnderlyingSecurityAltID < Quickfix::Group
7544
+ def initialize
7545
+ order = Quickfix::IntArray.new(3)
7546
+ order[0] = 458
7547
+ order[1] = 459
7548
+ order[2] = 0
7549
+ super(457, 458, order)
7550
+ end
7551
+ end
7552
+
7553
+ class NoUnderlyingStips < Quickfix::Group
7554
+ def initialize
7555
+ order = Quickfix::IntArray.new(3)
7556
+ order[0] = 888
7557
+ order[1] = 889
7558
+ order[2] = 0
7559
+ super(887, 888, order)
7560
+ end
7561
+ end
7562
+
5751
7563
  class NoRelatedSym < Quickfix::Group
5752
7564
  def initialize
5753
7565
  order = Quickfix::IntArray.new(52)
@@ -5806,6 +7618,38 @@ class DerivativeSecurityList < Message
5806
7618
  super(146, 55, order)
5807
7619
  end
5808
7620
 
7621
+ class NoSecurityAltID < Quickfix::Group
7622
+ def initialize
7623
+ order = Quickfix::IntArray.new(3)
7624
+ order[0] = 455
7625
+ order[1] = 456
7626
+ order[2] = 0
7627
+ super(454, 455, order)
7628
+ end
7629
+ end
7630
+
7631
+ class NoEvents < Quickfix::Group
7632
+ def initialize
7633
+ order = Quickfix::IntArray.new(5)
7634
+ order[0] = 865
7635
+ order[1] = 866
7636
+ order[2] = 867
7637
+ order[3] = 868
7638
+ order[4] = 0
7639
+ super(864, 865, order)
7640
+ end
7641
+ end
7642
+
7643
+ class NoInstrAttrib < Quickfix::Group
7644
+ def initialize
7645
+ order = Quickfix::IntArray.new(3)
7646
+ order[0] = 871
7647
+ order[1] = 872
7648
+ order[2] = 0
7649
+ super(870, 871, order)
7650
+ end
7651
+ end
7652
+
5809
7653
  class NoLegs < Quickfix::Group
5810
7654
  def initialize
5811
7655
  order = Quickfix::IntArray.new(42)
@@ -5853,6 +7697,16 @@ class DerivativeSecurityList < Message
5853
7697
  order[41] = 0
5854
7698
  super(555, 600, order)
5855
7699
  end
7700
+
7701
+ class NoLegSecurityAltID < Quickfix::Group
7702
+ def initialize
7703
+ order = Quickfix::IntArray.new(3)
7704
+ order[0] = 605
7705
+ order[1] = 606
7706
+ order[2] = 0
7707
+ super(604, 605, order)
7708
+ end
7709
+ end
5856
7710
  end
5857
7711
  end
5858
7712
  end
@@ -5931,6 +7785,28 @@ class NewOrderMultileg < Message
5931
7785
  end
5932
7786
  end
5933
7787
 
7788
+ class NoSecurityAltID < Quickfix::Group
7789
+ def initialize
7790
+ order = Quickfix::IntArray.new(3)
7791
+ order[0] = 455
7792
+ order[1] = 456
7793
+ order[2] = 0
7794
+ super(454, 455, order)
7795
+ end
7796
+ end
7797
+
7798
+ class NoEvents < Quickfix::Group
7799
+ def initialize
7800
+ order = Quickfix::IntArray.new(5)
7801
+ order[0] = 865
7802
+ order[1] = 866
7803
+ order[2] = 867
7804
+ order[3] = 868
7805
+ order[4] = 0
7806
+ super(864, 865, order)
7807
+ end
7808
+ end
7809
+
5934
7810
  class NoUnderlyings < Quickfix::Group
5935
7811
  def initialize
5936
7812
  order = Quickfix::IntArray.new(46)
@@ -5982,6 +7858,26 @@ class NewOrderMultileg < Message
5982
7858
  order[45] = 0
5983
7859
  super(711, 311, order)
5984
7860
  end
7861
+
7862
+ class NoUnderlyingSecurityAltID < Quickfix::Group
7863
+ def initialize
7864
+ order = Quickfix::IntArray.new(3)
7865
+ order[0] = 458
7866
+ order[1] = 459
7867
+ order[2] = 0
7868
+ super(457, 458, order)
7869
+ end
7870
+ end
7871
+
7872
+ class NoUnderlyingStips < Quickfix::Group
7873
+ def initialize
7874
+ order = Quickfix::IntArray.new(3)
7875
+ order[0] = 888
7876
+ order[1] = 889
7877
+ order[2] = 0
7878
+ super(887, 888, order)
7879
+ end
7880
+ end
5985
7881
  end
5986
7882
 
5987
7883
  class NoLegs < Quickfix::Group
@@ -6043,6 +7939,16 @@ class NewOrderMultileg < Message
6043
7939
  super(555, 600, order)
6044
7940
  end
6045
7941
 
7942
+ class NoLegSecurityAltID < Quickfix::Group
7943
+ def initialize
7944
+ order = Quickfix::IntArray.new(3)
7945
+ order[0] = 605
7946
+ order[1] = 606
7947
+ order[2] = 0
7948
+ super(604, 605, order)
7949
+ end
7950
+ end
7951
+
6046
7952
  class NoLegStipulations < Quickfix::Group
6047
7953
  def initialize
6048
7954
  order = Quickfix::IntArray.new(3)
@@ -6187,6 +8093,28 @@ class MultilegOrderCancelReplace < Message
6187
8093
  end
6188
8094
  end
6189
8095
 
8096
+ class NoSecurityAltID < Quickfix::Group
8097
+ def initialize
8098
+ order = Quickfix::IntArray.new(3)
8099
+ order[0] = 455
8100
+ order[1] = 456
8101
+ order[2] = 0
8102
+ super(454, 455, order)
8103
+ end
8104
+ end
8105
+
8106
+ class NoEvents < Quickfix::Group
8107
+ def initialize
8108
+ order = Quickfix::IntArray.new(5)
8109
+ order[0] = 865
8110
+ order[1] = 866
8111
+ order[2] = 867
8112
+ order[3] = 868
8113
+ order[4] = 0
8114
+ super(864, 865, order)
8115
+ end
8116
+ end
8117
+
6190
8118
  class NoUnderlyings < Quickfix::Group
6191
8119
  def initialize
6192
8120
  order = Quickfix::IntArray.new(46)
@@ -6238,6 +8166,26 @@ class MultilegOrderCancelReplace < Message
6238
8166
  order[45] = 0
6239
8167
  super(711, 311, order)
6240
8168
  end
8169
+
8170
+ class NoUnderlyingSecurityAltID < Quickfix::Group
8171
+ def initialize
8172
+ order = Quickfix::IntArray.new(3)
8173
+ order[0] = 458
8174
+ order[1] = 459
8175
+ order[2] = 0
8176
+ super(457, 458, order)
8177
+ end
8178
+ end
8179
+
8180
+ class NoUnderlyingStips < Quickfix::Group
8181
+ def initialize
8182
+ order = Quickfix::IntArray.new(3)
8183
+ order[0] = 888
8184
+ order[1] = 889
8185
+ order[2] = 0
8186
+ super(887, 888, order)
8187
+ end
8188
+ end
6241
8189
  end
6242
8190
 
6243
8191
  class NoLegs < Quickfix::Group
@@ -6299,6 +8247,16 @@ class MultilegOrderCancelReplace < Message
6299
8247
  super(555, 600, order)
6300
8248
  end
6301
8249
 
8250
+ class NoLegSecurityAltID < Quickfix::Group
8251
+ def initialize
8252
+ order = Quickfix::IntArray.new(3)
8253
+ order[0] = 605
8254
+ order[1] = 606
8255
+ order[2] = 0
8256
+ super(604, 605, order)
8257
+ end
8258
+ end
8259
+
6302
8260
  class NoLegStipulations < Quickfix::Group
6303
8261
  def initialize
6304
8262
  order = Quickfix::IntArray.new(3)
@@ -6397,6 +8355,38 @@ class TradeCaptureReportRequest < Message
6397
8355
  end
6398
8356
  end
6399
8357
 
8358
+ class NoSecurityAltID < Quickfix::Group
8359
+ def initialize
8360
+ order = Quickfix::IntArray.new(3)
8361
+ order[0] = 455
8362
+ order[1] = 456
8363
+ order[2] = 0
8364
+ super(454, 455, order)
8365
+ end
8366
+ end
8367
+
8368
+ class NoEvents < Quickfix::Group
8369
+ def initialize
8370
+ order = Quickfix::IntArray.new(5)
8371
+ order[0] = 865
8372
+ order[1] = 866
8373
+ order[2] = 867
8374
+ order[3] = 868
8375
+ order[4] = 0
8376
+ super(864, 865, order)
8377
+ end
8378
+ end
8379
+
8380
+ class NoInstrAttrib < Quickfix::Group
8381
+ def initialize
8382
+ order = Quickfix::IntArray.new(3)
8383
+ order[0] = 871
8384
+ order[1] = 872
8385
+ order[2] = 0
8386
+ super(870, 871, order)
8387
+ end
8388
+ end
8389
+
6400
8390
  class NoUnderlyings < Quickfix::Group
6401
8391
  def initialize
6402
8392
  order = Quickfix::IntArray.new(46)
@@ -6448,6 +8438,26 @@ class TradeCaptureReportRequest < Message
6448
8438
  order[45] = 0
6449
8439
  super(711, 311, order)
6450
8440
  end
8441
+
8442
+ class NoUnderlyingSecurityAltID < Quickfix::Group
8443
+ def initialize
8444
+ order = Quickfix::IntArray.new(3)
8445
+ order[0] = 458
8446
+ order[1] = 459
8447
+ order[2] = 0
8448
+ super(457, 458, order)
8449
+ end
8450
+ end
8451
+
8452
+ class NoUnderlyingStips < Quickfix::Group
8453
+ def initialize
8454
+ order = Quickfix::IntArray.new(3)
8455
+ order[0] = 888
8456
+ order[1] = 889
8457
+ order[2] = 0
8458
+ super(887, 888, order)
8459
+ end
8460
+ end
6451
8461
  end
6452
8462
 
6453
8463
  class NoLegs < Quickfix::Group
@@ -6497,6 +8507,16 @@ class TradeCaptureReportRequest < Message
6497
8507
  order[41] = 0
6498
8508
  super(555, 600, order)
6499
8509
  end
8510
+
8511
+ class NoLegSecurityAltID < Quickfix::Group
8512
+ def initialize
8513
+ order = Quickfix::IntArray.new(3)
8514
+ order[0] = 605
8515
+ order[1] = 606
8516
+ order[2] = 0
8517
+ super(604, 605, order)
8518
+ end
8519
+ end
6500
8520
  end
6501
8521
 
6502
8522
  class NoDates < Quickfix::Group
@@ -6516,6 +8536,28 @@ class TradeCaptureReport < Message
6516
8536
  getHeader().setField( Quickfix::MsgType.new("AE") )
6517
8537
  end
6518
8538
 
8539
+ class NoSecurityAltID < Quickfix::Group
8540
+ def initialize
8541
+ order = Quickfix::IntArray.new(3)
8542
+ order[0] = 455
8543
+ order[1] = 456
8544
+ order[2] = 0
8545
+ super(454, 455, order)
8546
+ end
8547
+ end
8548
+
8549
+ class NoEvents < Quickfix::Group
8550
+ def initialize
8551
+ order = Quickfix::IntArray.new(5)
8552
+ order[0] = 865
8553
+ order[1] = 866
8554
+ order[2] = 867
8555
+ order[3] = 868
8556
+ order[4] = 0
8557
+ super(864, 865, order)
8558
+ end
8559
+ end
8560
+
6519
8561
  class NoUnderlyings < Quickfix::Group
6520
8562
  def initialize
6521
8563
  order = Quickfix::IntArray.new(46)
@@ -6567,6 +8609,26 @@ class TradeCaptureReport < Message
6567
8609
  order[45] = 0
6568
8610
  super(711, 311, order)
6569
8611
  end
8612
+
8613
+ class NoUnderlyingSecurityAltID < Quickfix::Group
8614
+ def initialize
8615
+ order = Quickfix::IntArray.new(3)
8616
+ order[0] = 458
8617
+ order[1] = 459
8618
+ order[2] = 0
8619
+ super(457, 458, order)
8620
+ end
8621
+ end
8622
+
8623
+ class NoUnderlyingStips < Quickfix::Group
8624
+ def initialize
8625
+ order = Quickfix::IntArray.new(3)
8626
+ order[0] = 888
8627
+ order[1] = 889
8628
+ order[2] = 0
8629
+ super(887, 888, order)
8630
+ end
8631
+ end
6570
8632
  end
6571
8633
 
6572
8634
  class NoPosAmt < Quickfix::Group
@@ -6638,6 +8700,16 @@ class TradeCaptureReport < Message
6638
8700
  super(555, 600, order)
6639
8701
  end
6640
8702
 
8703
+ class NoLegSecurityAltID < Quickfix::Group
8704
+ def initialize
8705
+ order = Quickfix::IntArray.new(3)
8706
+ order[0] = 605
8707
+ order[1] = 606
8708
+ order[2] = 0
8709
+ super(604, 605, order)
8710
+ end
8711
+ end
8712
+
6641
8713
  class NoLegStipulations < Quickfix::Group
6642
8714
  def initialize
6643
8715
  order = Quickfix::IntArray.new(3)
@@ -6879,6 +8951,48 @@ class OrderMassStatusRequest < Message
6879
8951
  end
6880
8952
  end
6881
8953
  end
8954
+
8955
+ class NoSecurityAltID < Quickfix::Group
8956
+ def initialize
8957
+ order = Quickfix::IntArray.new(3)
8958
+ order[0] = 455
8959
+ order[1] = 456
8960
+ order[2] = 0
8961
+ super(454, 455, order)
8962
+ end
8963
+ end
8964
+
8965
+ class NoEvents < Quickfix::Group
8966
+ def initialize
8967
+ order = Quickfix::IntArray.new(5)
8968
+ order[0] = 865
8969
+ order[1] = 866
8970
+ order[2] = 867
8971
+ order[3] = 868
8972
+ order[4] = 0
8973
+ super(864, 865, order)
8974
+ end
8975
+ end
8976
+
8977
+ class NoUnderlyingSecurityAltID < Quickfix::Group
8978
+ def initialize
8979
+ order = Quickfix::IntArray.new(3)
8980
+ order[0] = 458
8981
+ order[1] = 459
8982
+ order[2] = 0
8983
+ super(457, 458, order)
8984
+ end
8985
+ end
8986
+
8987
+ class NoUnderlyingStips < Quickfix::Group
8988
+ def initialize
8989
+ order = Quickfix::IntArray.new(3)
8990
+ order[0] = 888
8991
+ order[1] = 889
8992
+ order[2] = 0
8993
+ super(887, 888, order)
8994
+ end
8995
+ end
6882
8996
  end
6883
8997
 
6884
8998
  class QuoteRequestReject < Message
@@ -6991,6 +9105,28 @@ class QuoteRequestReject < Message
6991
9105
  super(146, 55, order)
6992
9106
  end
6993
9107
 
9108
+ class NoSecurityAltID < Quickfix::Group
9109
+ def initialize
9110
+ order = Quickfix::IntArray.new(3)
9111
+ order[0] = 455
9112
+ order[1] = 456
9113
+ order[2] = 0
9114
+ super(454, 455, order)
9115
+ end
9116
+ end
9117
+
9118
+ class NoEvents < Quickfix::Group
9119
+ def initialize
9120
+ order = Quickfix::IntArray.new(5)
9121
+ order[0] = 865
9122
+ order[1] = 866
9123
+ order[2] = 867
9124
+ order[3] = 868
9125
+ order[4] = 0
9126
+ super(864, 865, order)
9127
+ end
9128
+ end
9129
+
6994
9130
  class NoUnderlyings < Quickfix::Group
6995
9131
  def initialize
6996
9132
  order = Quickfix::IntArray.new(46)
@@ -7042,6 +9178,26 @@ class QuoteRequestReject < Message
7042
9178
  order[45] = 0
7043
9179
  super(711, 311, order)
7044
9180
  end
9181
+
9182
+ class NoUnderlyingSecurityAltID < Quickfix::Group
9183
+ def initialize
9184
+ order = Quickfix::IntArray.new(3)
9185
+ order[0] = 458
9186
+ order[1] = 459
9187
+ order[2] = 0
9188
+ super(457, 458, order)
9189
+ end
9190
+ end
9191
+
9192
+ class NoUnderlyingStips < Quickfix::Group
9193
+ def initialize
9194
+ order = Quickfix::IntArray.new(3)
9195
+ order[0] = 888
9196
+ order[1] = 889
9197
+ order[2] = 0
9198
+ super(887, 888, order)
9199
+ end
9200
+ end
7045
9201
  end
7046
9202
 
7047
9203
  class NoStipulations < Quickfix::Group
@@ -7113,6 +9269,16 @@ class QuoteRequestReject < Message
7113
9269
  super(555, 600, order)
7114
9270
  end
7115
9271
 
9272
+ class NoLegSecurityAltID < Quickfix::Group
9273
+ def initialize
9274
+ order = Quickfix::IntArray.new(3)
9275
+ order[0] = 605
9276
+ order[1] = 606
9277
+ order[2] = 0
9278
+ super(604, 605, order)
9279
+ end
9280
+ end
9281
+
7116
9282
  class NoLegStipulations < Quickfix::Group
7117
9283
  def initialize
7118
9284
  order = Quickfix::IntArray.new(3)
@@ -7240,6 +9406,28 @@ class RFQRequest < Message
7240
9406
  super(146, 55, order)
7241
9407
  end
7242
9408
 
9409
+ class NoSecurityAltID < Quickfix::Group
9410
+ def initialize
9411
+ order = Quickfix::IntArray.new(3)
9412
+ order[0] = 455
9413
+ order[1] = 456
9414
+ order[2] = 0
9415
+ super(454, 455, order)
9416
+ end
9417
+ end
9418
+
9419
+ class NoEvents < Quickfix::Group
9420
+ def initialize
9421
+ order = Quickfix::IntArray.new(5)
9422
+ order[0] = 865
9423
+ order[1] = 866
9424
+ order[2] = 867
9425
+ order[3] = 868
9426
+ order[4] = 0
9427
+ super(864, 865, order)
9428
+ end
9429
+ end
9430
+
7243
9431
  class NoUnderlyings < Quickfix::Group
7244
9432
  def initialize
7245
9433
  order = Quickfix::IntArray.new(46)
@@ -7291,6 +9479,26 @@ class RFQRequest < Message
7291
9479
  order[45] = 0
7292
9480
  super(711, 311, order)
7293
9481
  end
9482
+
9483
+ class NoUnderlyingSecurityAltID < Quickfix::Group
9484
+ def initialize
9485
+ order = Quickfix::IntArray.new(3)
9486
+ order[0] = 458
9487
+ order[1] = 459
9488
+ order[2] = 0
9489
+ super(457, 458, order)
9490
+ end
9491
+ end
9492
+
9493
+ class NoUnderlyingStips < Quickfix::Group
9494
+ def initialize
9495
+ order = Quickfix::IntArray.new(3)
9496
+ order[0] = 888
9497
+ order[1] = 889
9498
+ order[2] = 0
9499
+ super(887, 888, order)
9500
+ end
9501
+ end
7294
9502
  end
7295
9503
 
7296
9504
  class NoLegs < Quickfix::Group
@@ -7340,6 +9548,16 @@ class RFQRequest < Message
7340
9548
  order[41] = 0
7341
9549
  super(555, 600, order)
7342
9550
  end
9551
+
9552
+ class NoLegSecurityAltID < Quickfix::Group
9553
+ def initialize
9554
+ order = Quickfix::IntArray.new(3)
9555
+ order[0] = 605
9556
+ order[1] = 606
9557
+ order[2] = 0
9558
+ super(604, 605, order)
9559
+ end
9560
+ end
7343
9561
  end
7344
9562
  end
7345
9563
  end
@@ -7372,6 +9590,28 @@ class QuoteStatusReport < Message
7372
9590
  end
7373
9591
  end
7374
9592
 
9593
+ class NoSecurityAltID < Quickfix::Group
9594
+ def initialize
9595
+ order = Quickfix::IntArray.new(3)
9596
+ order[0] = 455
9597
+ order[1] = 456
9598
+ order[2] = 0
9599
+ super(454, 455, order)
9600
+ end
9601
+ end
9602
+
9603
+ class NoEvents < Quickfix::Group
9604
+ def initialize
9605
+ order = Quickfix::IntArray.new(5)
9606
+ order[0] = 865
9607
+ order[1] = 866
9608
+ order[2] = 867
9609
+ order[3] = 868
9610
+ order[4] = 0
9611
+ super(864, 865, order)
9612
+ end
9613
+ end
9614
+
7375
9615
  class NoUnderlyings < Quickfix::Group
7376
9616
  def initialize
7377
9617
  order = Quickfix::IntArray.new(46)
@@ -7423,6 +9663,26 @@ class QuoteStatusReport < Message
7423
9663
  order[45] = 0
7424
9664
  super(711, 311, order)
7425
9665
  end
9666
+
9667
+ class NoUnderlyingSecurityAltID < Quickfix::Group
9668
+ def initialize
9669
+ order = Quickfix::IntArray.new(3)
9670
+ order[0] = 458
9671
+ order[1] = 459
9672
+ order[2] = 0
9673
+ super(457, 458, order)
9674
+ end
9675
+ end
9676
+
9677
+ class NoUnderlyingStips < Quickfix::Group
9678
+ def initialize
9679
+ order = Quickfix::IntArray.new(3)
9680
+ order[0] = 888
9681
+ order[1] = 889
9682
+ order[2] = 0
9683
+ super(887, 888, order)
9684
+ end
9685
+ end
7426
9686
  end
7427
9687
 
7428
9688
  class NoStipulations < Quickfix::Group
@@ -7489,6 +9749,16 @@ class QuoteStatusReport < Message
7489
9749
  super(555, 600, order)
7490
9750
  end
7491
9751
 
9752
+ class NoLegSecurityAltID < Quickfix::Group
9753
+ def initialize
9754
+ order = Quickfix::IntArray.new(3)
9755
+ order[0] = 605
9756
+ order[1] = 606
9757
+ order[2] = 0
9758
+ super(604, 605, order)
9759
+ end
9760
+ end
9761
+
7492
9762
  class NoLegStipulations < Quickfix::Group
7493
9763
  def initialize
7494
9764
  order = Quickfix::IntArray.new(3)
@@ -7569,6 +9839,28 @@ class QuoteResponse < Message
7569
9839
  end
7570
9840
  end
7571
9841
 
9842
+ class NoSecurityAltID < Quickfix::Group
9843
+ def initialize
9844
+ order = Quickfix::IntArray.new(3)
9845
+ order[0] = 455
9846
+ order[1] = 456
9847
+ order[2] = 0
9848
+ super(454, 455, order)
9849
+ end
9850
+ end
9851
+
9852
+ class NoEvents < Quickfix::Group
9853
+ def initialize
9854
+ order = Quickfix::IntArray.new(5)
9855
+ order[0] = 865
9856
+ order[1] = 866
9857
+ order[2] = 867
9858
+ order[3] = 868
9859
+ order[4] = 0
9860
+ super(864, 865, order)
9861
+ end
9862
+ end
9863
+
7572
9864
  class NoUnderlyings < Quickfix::Group
7573
9865
  def initialize
7574
9866
  order = Quickfix::IntArray.new(46)
@@ -7620,6 +9912,26 @@ class QuoteResponse < Message
7620
9912
  order[45] = 0
7621
9913
  super(711, 311, order)
7622
9914
  end
9915
+
9916
+ class NoUnderlyingSecurityAltID < Quickfix::Group
9917
+ def initialize
9918
+ order = Quickfix::IntArray.new(3)
9919
+ order[0] = 458
9920
+ order[1] = 459
9921
+ order[2] = 0
9922
+ super(457, 458, order)
9923
+ end
9924
+ end
9925
+
9926
+ class NoUnderlyingStips < Quickfix::Group
9927
+ def initialize
9928
+ order = Quickfix::IntArray.new(3)
9929
+ order[0] = 888
9930
+ order[1] = 889
9931
+ order[2] = 0
9932
+ super(887, 888, order)
9933
+ end
9934
+ end
7623
9935
  end
7624
9936
 
7625
9937
  class NoStipulations < Quickfix::Group
@@ -7694,6 +10006,16 @@ class QuoteResponse < Message
7694
10006
  super(555, 600, order)
7695
10007
  end
7696
10008
 
10009
+ class NoLegSecurityAltID < Quickfix::Group
10010
+ def initialize
10011
+ order = Quickfix::IntArray.new(3)
10012
+ order[0] = 605
10013
+ order[1] = 606
10014
+ order[2] = 0
10015
+ super(604, 605, order)
10016
+ end
10017
+ end
10018
+
7697
10019
  class NoLegStipulations < Quickfix::Group
7698
10020
  def initialize
7699
10021
  order = Quickfix::IntArray.new(3)
@@ -7806,6 +10128,38 @@ class Confirmation < Message
7806
10128
  end
7807
10129
  end
7808
10130
 
10131
+ class NoSecurityAltID < Quickfix::Group
10132
+ def initialize
10133
+ order = Quickfix::IntArray.new(3)
10134
+ order[0] = 455
10135
+ order[1] = 456
10136
+ order[2] = 0
10137
+ super(454, 455, order)
10138
+ end
10139
+ end
10140
+
10141
+ class NoEvents < Quickfix::Group
10142
+ def initialize
10143
+ order = Quickfix::IntArray.new(5)
10144
+ order[0] = 865
10145
+ order[1] = 866
10146
+ order[2] = 867
10147
+ order[3] = 868
10148
+ order[4] = 0
10149
+ super(864, 865, order)
10150
+ end
10151
+ end
10152
+
10153
+ class NoInstrAttrib < Quickfix::Group
10154
+ def initialize
10155
+ order = Quickfix::IntArray.new(3)
10156
+ order[0] = 871
10157
+ order[1] = 872
10158
+ order[2] = 0
10159
+ super(870, 871, order)
10160
+ end
10161
+ end
10162
+
7809
10163
  class NoUnderlyings < Quickfix::Group
7810
10164
  def initialize
7811
10165
  order = Quickfix::IntArray.new(46)
@@ -7857,6 +10211,26 @@ class Confirmation < Message
7857
10211
  order[45] = 0
7858
10212
  super(711, 311, order)
7859
10213
  end
10214
+
10215
+ class NoUnderlyingSecurityAltID < Quickfix::Group
10216
+ def initialize
10217
+ order = Quickfix::IntArray.new(3)
10218
+ order[0] = 458
10219
+ order[1] = 459
10220
+ order[2] = 0
10221
+ super(457, 458, order)
10222
+ end
10223
+ end
10224
+
10225
+ class NoUnderlyingStips < Quickfix::Group
10226
+ def initialize
10227
+ order = Quickfix::IntArray.new(3)
10228
+ order[0] = 888
10229
+ order[1] = 889
10230
+ order[2] = 0
10231
+ super(887, 888, order)
10232
+ end
10233
+ end
7860
10234
  end
7861
10235
 
7862
10236
  class NoLegs < Quickfix::Group
@@ -7906,6 +10280,16 @@ class Confirmation < Message
7906
10280
  order[41] = 0
7907
10281
  super(555, 600, order)
7908
10282
  end
10283
+
10284
+ class NoLegSecurityAltID < Quickfix::Group
10285
+ def initialize
10286
+ order = Quickfix::IntArray.new(3)
10287
+ order[0] = 605
10288
+ order[1] = 606
10289
+ order[2] = 0
10290
+ super(604, 605, order)
10291
+ end
10292
+ end
7909
10293
  end
7910
10294
 
7911
10295
  class NoCapacities < Quickfix::Group
@@ -7919,6 +10303,39 @@ class Confirmation < Message
7919
10303
  end
7920
10304
  end
7921
10305
 
10306
+ class NoDlvyInst < Quickfix::Group
10307
+ def initialize
10308
+ order = Quickfix::IntArray.new(4)
10309
+ order[0] = 165
10310
+ order[1] = 787
10311
+ order[2] = 781
10312
+ order[3] = 0
10313
+ super(85, 165, order)
10314
+ end
10315
+
10316
+ class NoSettlPartyIDs < Quickfix::Group
10317
+ def initialize
10318
+ order = Quickfix::IntArray.new(5)
10319
+ order[0] = 782
10320
+ order[1] = 783
10321
+ order[2] = 784
10322
+ order[3] = 801
10323
+ order[4] = 0
10324
+ super(781, 782, order)
10325
+ end
10326
+
10327
+ class NoSettlPartySubIDs < Quickfix::Group
10328
+ def initialize
10329
+ order = Quickfix::IntArray.new(3)
10330
+ order[0] = 785
10331
+ order[1] = 786
10332
+ order[2] = 0
10333
+ super(801, 785, order)
10334
+ end
10335
+ end
10336
+ end
10337
+ end
10338
+
7922
10339
  class NoStipulations < Quickfix::Group
7923
10340
  def initialize
7924
10341
  order = Quickfix::IntArray.new(3)
@@ -7970,6 +10387,28 @@ class PositionMaintenanceRequest < Message
7970
10387
  end
7971
10388
  end
7972
10389
 
10390
+ class NoSecurityAltID < Quickfix::Group
10391
+ def initialize
10392
+ order = Quickfix::IntArray.new(3)
10393
+ order[0] = 455
10394
+ order[1] = 456
10395
+ order[2] = 0
10396
+ super(454, 455, order)
10397
+ end
10398
+ end
10399
+
10400
+ class NoEvents < Quickfix::Group
10401
+ def initialize
10402
+ order = Quickfix::IntArray.new(5)
10403
+ order[0] = 865
10404
+ order[1] = 866
10405
+ order[2] = 867
10406
+ order[3] = 868
10407
+ order[4] = 0
10408
+ super(864, 865, order)
10409
+ end
10410
+ end
10411
+
7973
10412
  class NoLegs < Quickfix::Group
7974
10413
  def initialize
7975
10414
  order = Quickfix::IntArray.new(42)
@@ -8017,6 +10456,16 @@ class PositionMaintenanceRequest < Message
8017
10456
  order[41] = 0
8018
10457
  super(555, 600, order)
8019
10458
  end
10459
+
10460
+ class NoLegSecurityAltID < Quickfix::Group
10461
+ def initialize
10462
+ order = Quickfix::IntArray.new(3)
10463
+ order[0] = 605
10464
+ order[1] = 606
10465
+ order[2] = 0
10466
+ super(604, 605, order)
10467
+ end
10468
+ end
8020
10469
  end
8021
10470
 
8022
10471
  class NoUnderlyings < Quickfix::Group
@@ -8070,6 +10519,26 @@ class PositionMaintenanceRequest < Message
8070
10519
  order[45] = 0
8071
10520
  super(711, 311, order)
8072
10521
  end
10522
+
10523
+ class NoUnderlyingSecurityAltID < Quickfix::Group
10524
+ def initialize
10525
+ order = Quickfix::IntArray.new(3)
10526
+ order[0] = 458
10527
+ order[1] = 459
10528
+ order[2] = 0
10529
+ super(457, 458, order)
10530
+ end
10531
+ end
10532
+
10533
+ class NoUnderlyingStips < Quickfix::Group
10534
+ def initialize
10535
+ order = Quickfix::IntArray.new(3)
10536
+ order[0] = 888
10537
+ order[1] = 889
10538
+ order[2] = 0
10539
+ super(887, 888, order)
10540
+ end
10541
+ end
8073
10542
  end
8074
10543
 
8075
10544
  class NoTradingSessions < Quickfix::Group
@@ -8146,6 +10615,28 @@ class PositionMaintenanceReport < Message
8146
10615
  end
8147
10616
  end
8148
10617
 
10618
+ class NoSecurityAltID < Quickfix::Group
10619
+ def initialize
10620
+ order = Quickfix::IntArray.new(3)
10621
+ order[0] = 455
10622
+ order[1] = 456
10623
+ order[2] = 0
10624
+ super(454, 455, order)
10625
+ end
10626
+ end
10627
+
10628
+ class NoEvents < Quickfix::Group
10629
+ def initialize
10630
+ order = Quickfix::IntArray.new(5)
10631
+ order[0] = 865
10632
+ order[1] = 866
10633
+ order[2] = 867
10634
+ order[3] = 868
10635
+ order[4] = 0
10636
+ super(864, 865, order)
10637
+ end
10638
+ end
10639
+
8149
10640
  class NoLegs < Quickfix::Group
8150
10641
  def initialize
8151
10642
  order = Quickfix::IntArray.new(42)
@@ -8193,6 +10684,16 @@ class PositionMaintenanceReport < Message
8193
10684
  order[41] = 0
8194
10685
  super(555, 600, order)
8195
10686
  end
10687
+
10688
+ class NoLegSecurityAltID < Quickfix::Group
10689
+ def initialize
10690
+ order = Quickfix::IntArray.new(3)
10691
+ order[0] = 605
10692
+ order[1] = 606
10693
+ order[2] = 0
10694
+ super(604, 605, order)
10695
+ end
10696
+ end
8196
10697
  end
8197
10698
 
8198
10699
  class NoUnderlyings < Quickfix::Group
@@ -8246,6 +10747,26 @@ class PositionMaintenanceReport < Message
8246
10747
  order[45] = 0
8247
10748
  super(711, 311, order)
8248
10749
  end
10750
+
10751
+ class NoUnderlyingSecurityAltID < Quickfix::Group
10752
+ def initialize
10753
+ order = Quickfix::IntArray.new(3)
10754
+ order[0] = 458
10755
+ order[1] = 459
10756
+ order[2] = 0
10757
+ super(457, 458, order)
10758
+ end
10759
+ end
10760
+
10761
+ class NoUnderlyingStips < Quickfix::Group
10762
+ def initialize
10763
+ order = Quickfix::IntArray.new(3)
10764
+ order[0] = 888
10765
+ order[1] = 889
10766
+ order[2] = 0
10767
+ super(887, 888, order)
10768
+ end
10769
+ end
8249
10770
  end
8250
10771
 
8251
10772
  class NoTradingSessions < Quickfix::Group
@@ -8332,6 +10853,28 @@ class RequestForPositions < Message
8332
10853
  end
8333
10854
  end
8334
10855
 
10856
+ class NoSecurityAltID < Quickfix::Group
10857
+ def initialize
10858
+ order = Quickfix::IntArray.new(3)
10859
+ order[0] = 455
10860
+ order[1] = 456
10861
+ order[2] = 0
10862
+ super(454, 455, order)
10863
+ end
10864
+ end
10865
+
10866
+ class NoEvents < Quickfix::Group
10867
+ def initialize
10868
+ order = Quickfix::IntArray.new(5)
10869
+ order[0] = 865
10870
+ order[1] = 866
10871
+ order[2] = 867
10872
+ order[3] = 868
10873
+ order[4] = 0
10874
+ super(864, 865, order)
10875
+ end
10876
+ end
10877
+
8335
10878
  class NoLegs < Quickfix::Group
8336
10879
  def initialize
8337
10880
  order = Quickfix::IntArray.new(42)
@@ -8379,6 +10922,16 @@ class RequestForPositions < Message
8379
10922
  order[41] = 0
8380
10923
  super(555, 600, order)
8381
10924
  end
10925
+
10926
+ class NoLegSecurityAltID < Quickfix::Group
10927
+ def initialize
10928
+ order = Quickfix::IntArray.new(3)
10929
+ order[0] = 605
10930
+ order[1] = 606
10931
+ order[2] = 0
10932
+ super(604, 605, order)
10933
+ end
10934
+ end
8382
10935
  end
8383
10936
 
8384
10937
  class NoUnderlyings < Quickfix::Group
@@ -8432,6 +10985,26 @@ class RequestForPositions < Message
8432
10985
  order[45] = 0
8433
10986
  super(711, 311, order)
8434
10987
  end
10988
+
10989
+ class NoUnderlyingSecurityAltID < Quickfix::Group
10990
+ def initialize
10991
+ order = Quickfix::IntArray.new(3)
10992
+ order[0] = 458
10993
+ order[1] = 459
10994
+ order[2] = 0
10995
+ super(457, 458, order)
10996
+ end
10997
+ end
10998
+
10999
+ class NoUnderlyingStips < Quickfix::Group
11000
+ def initialize
11001
+ order = Quickfix::IntArray.new(3)
11002
+ order[0] = 888
11003
+ order[1] = 889
11004
+ order[2] = 0
11005
+ super(887, 888, order)
11006
+ end
11007
+ end
8435
11008
  end
8436
11009
 
8437
11010
  class NoTradingSessions < Quickfix::Group
@@ -8473,6 +11046,28 @@ class RequestForPositionsAck < Message
8473
11046
  end
8474
11047
  end
8475
11048
 
11049
+ class NoSecurityAltID < Quickfix::Group
11050
+ def initialize
11051
+ order = Quickfix::IntArray.new(3)
11052
+ order[0] = 455
11053
+ order[1] = 456
11054
+ order[2] = 0
11055
+ super(454, 455, order)
11056
+ end
11057
+ end
11058
+
11059
+ class NoEvents < Quickfix::Group
11060
+ def initialize
11061
+ order = Quickfix::IntArray.new(5)
11062
+ order[0] = 865
11063
+ order[1] = 866
11064
+ order[2] = 867
11065
+ order[3] = 868
11066
+ order[4] = 0
11067
+ super(864, 865, order)
11068
+ end
11069
+ end
11070
+
8476
11071
  class NoLegs < Quickfix::Group
8477
11072
  def initialize
8478
11073
  order = Quickfix::IntArray.new(42)
@@ -8520,6 +11115,16 @@ class RequestForPositionsAck < Message
8520
11115
  order[41] = 0
8521
11116
  super(555, 600, order)
8522
11117
  end
11118
+
11119
+ class NoLegSecurityAltID < Quickfix::Group
11120
+ def initialize
11121
+ order = Quickfix::IntArray.new(3)
11122
+ order[0] = 605
11123
+ order[1] = 606
11124
+ order[2] = 0
11125
+ super(604, 605, order)
11126
+ end
11127
+ end
8523
11128
  end
8524
11129
 
8525
11130
  class NoUnderlyings < Quickfix::Group
@@ -8573,6 +11178,26 @@ class RequestForPositionsAck < Message
8573
11178
  order[45] = 0
8574
11179
  super(711, 311, order)
8575
11180
  end
11181
+
11182
+ class NoUnderlyingSecurityAltID < Quickfix::Group
11183
+ def initialize
11184
+ order = Quickfix::IntArray.new(3)
11185
+ order[0] = 458
11186
+ order[1] = 459
11187
+ order[2] = 0
11188
+ super(457, 458, order)
11189
+ end
11190
+ end
11191
+
11192
+ class NoUnderlyingStips < Quickfix::Group
11193
+ def initialize
11194
+ order = Quickfix::IntArray.new(3)
11195
+ order[0] = 888
11196
+ order[1] = 889
11197
+ order[2] = 0
11198
+ super(887, 888, order)
11199
+ end
11200
+ end
8576
11201
  end
8577
11202
  end
8578
11203
 
@@ -8604,6 +11229,28 @@ class PositionReport < Message
8604
11229
  end
8605
11230
  end
8606
11231
 
11232
+ class NoSecurityAltID < Quickfix::Group
11233
+ def initialize
11234
+ order = Quickfix::IntArray.new(3)
11235
+ order[0] = 455
11236
+ order[1] = 456
11237
+ order[2] = 0
11238
+ super(454, 455, order)
11239
+ end
11240
+ end
11241
+
11242
+ class NoEvents < Quickfix::Group
11243
+ def initialize
11244
+ order = Quickfix::IntArray.new(5)
11245
+ order[0] = 865
11246
+ order[1] = 866
11247
+ order[2] = 867
11248
+ order[3] = 868
11249
+ order[4] = 0
11250
+ super(864, 865, order)
11251
+ end
11252
+ end
11253
+
8607
11254
  class NoLegs < Quickfix::Group
8608
11255
  def initialize
8609
11256
  order = Quickfix::IntArray.new(42)
@@ -8651,6 +11298,16 @@ class PositionReport < Message
8651
11298
  order[41] = 0
8652
11299
  super(555, 600, order)
8653
11300
  end
11301
+
11302
+ class NoLegSecurityAltID < Quickfix::Group
11303
+ def initialize
11304
+ order = Quickfix::IntArray.new(3)
11305
+ order[0] = 605
11306
+ order[1] = 606
11307
+ order[2] = 0
11308
+ super(604, 605, order)
11309
+ end
11310
+ end
8654
11311
  end
8655
11312
 
8656
11313
  class NoUnderlyings < Quickfix::Group
@@ -8706,6 +11363,26 @@ class PositionReport < Message
8706
11363
  order[47] = 0
8707
11364
  super(711, 311, order)
8708
11365
  end
11366
+
11367
+ class NoUnderlyingSecurityAltID < Quickfix::Group
11368
+ def initialize
11369
+ order = Quickfix::IntArray.new(3)
11370
+ order[0] = 458
11371
+ order[1] = 459
11372
+ order[2] = 0
11373
+ super(457, 458, order)
11374
+ end
11375
+ end
11376
+
11377
+ class NoUnderlyingStips < Quickfix::Group
11378
+ def initialize
11379
+ order = Quickfix::IntArray.new(3)
11380
+ order[0] = 888
11381
+ order[1] = 889
11382
+ order[2] = 0
11383
+ super(887, 888, order)
11384
+ end
11385
+ end
8709
11386
  end
8710
11387
 
8711
11388
  class NoPositions < Quickfix::Group
@@ -8760,6 +11437,28 @@ class TradeCaptureReportRequestAck < Message
8760
11437
  getHeader().setField( Quickfix::MsgType.new("AQ") )
8761
11438
  end
8762
11439
 
11440
+ class NoSecurityAltID < Quickfix::Group
11441
+ def initialize
11442
+ order = Quickfix::IntArray.new(3)
11443
+ order[0] = 455
11444
+ order[1] = 456
11445
+ order[2] = 0
11446
+ super(454, 455, order)
11447
+ end
11448
+ end
11449
+
11450
+ class NoEvents < Quickfix::Group
11451
+ def initialize
11452
+ order = Quickfix::IntArray.new(5)
11453
+ order[0] = 865
11454
+ order[1] = 866
11455
+ order[2] = 867
11456
+ order[3] = 868
11457
+ order[4] = 0
11458
+ super(864, 865, order)
11459
+ end
11460
+ end
11461
+
8763
11462
  class NoUnderlyings < Quickfix::Group
8764
11463
  def initialize
8765
11464
  order = Quickfix::IntArray.new(46)
@@ -8811,6 +11510,26 @@ class TradeCaptureReportRequestAck < Message
8811
11510
  order[45] = 0
8812
11511
  super(711, 311, order)
8813
11512
  end
11513
+
11514
+ class NoUnderlyingSecurityAltID < Quickfix::Group
11515
+ def initialize
11516
+ order = Quickfix::IntArray.new(3)
11517
+ order[0] = 458
11518
+ order[1] = 459
11519
+ order[2] = 0
11520
+ super(457, 458, order)
11521
+ end
11522
+ end
11523
+
11524
+ class NoUnderlyingStips < Quickfix::Group
11525
+ def initialize
11526
+ order = Quickfix::IntArray.new(3)
11527
+ order[0] = 888
11528
+ order[1] = 889
11529
+ order[2] = 0
11530
+ super(887, 888, order)
11531
+ end
11532
+ end
8814
11533
  end
8815
11534
 
8816
11535
  class NoLegs < Quickfix::Group
@@ -8860,6 +11579,16 @@ class TradeCaptureReportRequestAck < Message
8860
11579
  order[41] = 0
8861
11580
  super(555, 600, order)
8862
11581
  end
11582
+
11583
+ class NoLegSecurityAltID < Quickfix::Group
11584
+ def initialize
11585
+ order = Quickfix::IntArray.new(3)
11586
+ order[0] = 605
11587
+ order[1] = 606
11588
+ order[2] = 0
11589
+ super(604, 605, order)
11590
+ end
11591
+ end
8863
11592
  end
8864
11593
  end
8865
11594
 
@@ -8869,6 +11598,28 @@ class TradeCaptureReportAck < Message
8869
11598
  getHeader().setField( Quickfix::MsgType.new("AR") )
8870
11599
  end
8871
11600
 
11601
+ class NoSecurityAltID < Quickfix::Group
11602
+ def initialize
11603
+ order = Quickfix::IntArray.new(3)
11604
+ order[0] = 455
11605
+ order[1] = 456
11606
+ order[2] = 0
11607
+ super(454, 455, order)
11608
+ end
11609
+ end
11610
+
11611
+ class NoEvents < Quickfix::Group
11612
+ def initialize
11613
+ order = Quickfix::IntArray.new(5)
11614
+ order[0] = 865
11615
+ order[1] = 866
11616
+ order[2] = 867
11617
+ order[3] = 868
11618
+ order[4] = 0
11619
+ super(864, 865, order)
11620
+ end
11621
+ end
11622
+
8872
11623
  class NoTrdRegTimestamps < Quickfix::Group
8873
11624
  def initialize
8874
11625
  order = Quickfix::IntArray.new(4)
@@ -8939,6 +11690,16 @@ class TradeCaptureReportAck < Message
8939
11690
  super(555, 600, order)
8940
11691
  end
8941
11692
 
11693
+ class NoLegSecurityAltID < Quickfix::Group
11694
+ def initialize
11695
+ order = Quickfix::IntArray.new(3)
11696
+ order[0] = 605
11697
+ order[1] = 606
11698
+ order[2] = 0
11699
+ super(604, 605, order)
11700
+ end
11701
+ end
11702
+
8942
11703
  class NoLegStipulations < Quickfix::Group
8943
11704
  def initialize
8944
11705
  order = Quickfix::IntArray.new(3)
@@ -9068,6 +11829,38 @@ class AllocationReport < Message
9068
11829
  end
9069
11830
  end
9070
11831
 
11832
+ class NoSecurityAltID < Quickfix::Group
11833
+ def initialize
11834
+ order = Quickfix::IntArray.new(3)
11835
+ order[0] = 455
11836
+ order[1] = 456
11837
+ order[2] = 0
11838
+ super(454, 455, order)
11839
+ end
11840
+ end
11841
+
11842
+ class NoEvents < Quickfix::Group
11843
+ def initialize
11844
+ order = Quickfix::IntArray.new(5)
11845
+ order[0] = 865
11846
+ order[1] = 866
11847
+ order[2] = 867
11848
+ order[3] = 868
11849
+ order[4] = 0
11850
+ super(864, 865, order)
11851
+ end
11852
+ end
11853
+
11854
+ class NoInstrAttrib < Quickfix::Group
11855
+ def initialize
11856
+ order = Quickfix::IntArray.new(3)
11857
+ order[0] = 871
11858
+ order[1] = 872
11859
+ order[2] = 0
11860
+ super(870, 871, order)
11861
+ end
11862
+ end
11863
+
9071
11864
  class NoUnderlyings < Quickfix::Group
9072
11865
  def initialize
9073
11866
  order = Quickfix::IntArray.new(46)
@@ -9119,6 +11912,26 @@ class AllocationReport < Message
9119
11912
  order[45] = 0
9120
11913
  super(711, 311, order)
9121
11914
  end
11915
+
11916
+ class NoUnderlyingSecurityAltID < Quickfix::Group
11917
+ def initialize
11918
+ order = Quickfix::IntArray.new(3)
11919
+ order[0] = 458
11920
+ order[1] = 459
11921
+ order[2] = 0
11922
+ super(457, 458, order)
11923
+ end
11924
+ end
11925
+
11926
+ class NoUnderlyingStips < Quickfix::Group
11927
+ def initialize
11928
+ order = Quickfix::IntArray.new(3)
11929
+ order[0] = 888
11930
+ order[1] = 889
11931
+ order[2] = 0
11932
+ super(887, 888, order)
11933
+ end
11934
+ end
9122
11935
  end
9123
11936
 
9124
11937
  class NoLegs < Quickfix::Group
@@ -9168,6 +11981,16 @@ class AllocationReport < Message
9168
11981
  order[41] = 0
9169
11982
  super(555, 600, order)
9170
11983
  end
11984
+
11985
+ class NoLegSecurityAltID < Quickfix::Group
11986
+ def initialize
11987
+ order = Quickfix::IntArray.new(3)
11988
+ order[0] = 605
11989
+ order[1] = 606
11990
+ order[2] = 0
11991
+ super(604, 605, order)
11992
+ end
11993
+ end
9171
11994
  end
9172
11995
 
9173
11996
  class NoPartyIDs < Quickfix::Group
@@ -9285,6 +12108,39 @@ class AllocationReport < Message
9285
12108
  super(576, 577, order)
9286
12109
  end
9287
12110
  end
12111
+
12112
+ class NoDlvyInst < Quickfix::Group
12113
+ def initialize
12114
+ order = Quickfix::IntArray.new(4)
12115
+ order[0] = 165
12116
+ order[1] = 787
12117
+ order[2] = 781
12118
+ order[3] = 0
12119
+ super(85, 165, order)
12120
+ end
12121
+
12122
+ class NoSettlPartyIDs < Quickfix::Group
12123
+ def initialize
12124
+ order = Quickfix::IntArray.new(5)
12125
+ order[0] = 782
12126
+ order[1] = 783
12127
+ order[2] = 784
12128
+ order[3] = 801
12129
+ order[4] = 0
12130
+ super(781, 782, order)
12131
+ end
12132
+
12133
+ class NoSettlPartySubIDs < Quickfix::Group
12134
+ def initialize
12135
+ order = Quickfix::IntArray.new(3)
12136
+ order[0] = 785
12137
+ order[1] = 786
12138
+ order[2] = 0
12139
+ super(801, 785, order)
12140
+ end
12141
+ end
12142
+ end
12143
+ end
9288
12144
  end
9289
12145
  end
9290
12146
 
@@ -9397,6 +12253,28 @@ class AssignmentReport < Message
9397
12253
  end
9398
12254
  end
9399
12255
 
12256
+ class NoSecurityAltID < Quickfix::Group
12257
+ def initialize
12258
+ order = Quickfix::IntArray.new(3)
12259
+ order[0] = 455
12260
+ order[1] = 456
12261
+ order[2] = 0
12262
+ super(454, 455, order)
12263
+ end
12264
+ end
12265
+
12266
+ class NoEvents < Quickfix::Group
12267
+ def initialize
12268
+ order = Quickfix::IntArray.new(5)
12269
+ order[0] = 865
12270
+ order[1] = 866
12271
+ order[2] = 867
12272
+ order[3] = 868
12273
+ order[4] = 0
12274
+ super(864, 865, order)
12275
+ end
12276
+ end
12277
+
9400
12278
  class NoLegs < Quickfix::Group
9401
12279
  def initialize
9402
12280
  order = Quickfix::IntArray.new(42)
@@ -9444,6 +12322,16 @@ class AssignmentReport < Message
9444
12322
  order[41] = 0
9445
12323
  super(555, 600, order)
9446
12324
  end
12325
+
12326
+ class NoLegSecurityAltID < Quickfix::Group
12327
+ def initialize
12328
+ order = Quickfix::IntArray.new(3)
12329
+ order[0] = 605
12330
+ order[1] = 606
12331
+ order[2] = 0
12332
+ super(604, 605, order)
12333
+ end
12334
+ end
9447
12335
  end
9448
12336
 
9449
12337
  class NoUnderlyings < Quickfix::Group
@@ -9497,6 +12385,26 @@ class AssignmentReport < Message
9497
12385
  order[45] = 0
9498
12386
  super(711, 311, order)
9499
12387
  end
12388
+
12389
+ class NoUnderlyingSecurityAltID < Quickfix::Group
12390
+ def initialize
12391
+ order = Quickfix::IntArray.new(3)
12392
+ order[0] = 458
12393
+ order[1] = 459
12394
+ order[2] = 0
12395
+ super(457, 458, order)
12396
+ end
12397
+ end
12398
+
12399
+ class NoUnderlyingStips < Quickfix::Group
12400
+ def initialize
12401
+ order = Quickfix::IntArray.new(3)
12402
+ order[0] = 888
12403
+ order[1] = 889
12404
+ order[2] = 0
12405
+ super(887, 888, order)
12406
+ end
12407
+ end
9500
12408
  end
9501
12409
 
9502
12410
  class NoPositions < Quickfix::Group
@@ -9592,6 +12500,28 @@ class CollateralRequest < Message
9592
12500
  end
9593
12501
  end
9594
12502
 
12503
+ class NoSecurityAltID < Quickfix::Group
12504
+ def initialize
12505
+ order = Quickfix::IntArray.new(3)
12506
+ order[0] = 455
12507
+ order[1] = 456
12508
+ order[2] = 0
12509
+ super(454, 455, order)
12510
+ end
12511
+ end
12512
+
12513
+ class NoEvents < Quickfix::Group
12514
+ def initialize
12515
+ order = Quickfix::IntArray.new(5)
12516
+ order[0] = 865
12517
+ order[1] = 866
12518
+ order[2] = 867
12519
+ order[3] = 868
12520
+ order[4] = 0
12521
+ super(864, 865, order)
12522
+ end
12523
+ end
12524
+
9595
12525
  class NoLegs < Quickfix::Group
9596
12526
  def initialize
9597
12527
  order = Quickfix::IntArray.new(42)
@@ -9639,6 +12569,16 @@ class CollateralRequest < Message
9639
12569
  order[41] = 0
9640
12570
  super(555, 600, order)
9641
12571
  end
12572
+
12573
+ class NoLegSecurityAltID < Quickfix::Group
12574
+ def initialize
12575
+ order = Quickfix::IntArray.new(3)
12576
+ order[0] = 605
12577
+ order[1] = 606
12578
+ order[2] = 0
12579
+ super(604, 605, order)
12580
+ end
12581
+ end
9642
12582
  end
9643
12583
 
9644
12584
  class NoUnderlyings < Quickfix::Group
@@ -9693,6 +12633,26 @@ class CollateralRequest < Message
9693
12633
  order[46] = 0
9694
12634
  super(711, 311, order)
9695
12635
  end
12636
+
12637
+ class NoUnderlyingSecurityAltID < Quickfix::Group
12638
+ def initialize
12639
+ order = Quickfix::IntArray.new(3)
12640
+ order[0] = 458
12641
+ order[1] = 459
12642
+ order[2] = 0
12643
+ super(457, 458, order)
12644
+ end
12645
+ end
12646
+
12647
+ class NoUnderlyingStips < Quickfix::Group
12648
+ def initialize
12649
+ order = Quickfix::IntArray.new(3)
12650
+ order[0] = 888
12651
+ order[1] = 889
12652
+ order[2] = 0
12653
+ super(887, 888, order)
12654
+ end
12655
+ end
9696
12656
  end
9697
12657
 
9698
12658
  class NoTrdRegTimestamps < Quickfix::Group
@@ -9776,6 +12736,28 @@ class CollateralAssignment < Message
9776
12736
  end
9777
12737
  end
9778
12738
 
12739
+ class NoSecurityAltID < Quickfix::Group
12740
+ def initialize
12741
+ order = Quickfix::IntArray.new(3)
12742
+ order[0] = 455
12743
+ order[1] = 456
12744
+ order[2] = 0
12745
+ super(454, 455, order)
12746
+ end
12747
+ end
12748
+
12749
+ class NoEvents < Quickfix::Group
12750
+ def initialize
12751
+ order = Quickfix::IntArray.new(5)
12752
+ order[0] = 865
12753
+ order[1] = 866
12754
+ order[2] = 867
12755
+ order[3] = 868
12756
+ order[4] = 0
12757
+ super(864, 865, order)
12758
+ end
12759
+ end
12760
+
9779
12761
  class NoLegs < Quickfix::Group
9780
12762
  def initialize
9781
12763
  order = Quickfix::IntArray.new(42)
@@ -9823,6 +12805,16 @@ class CollateralAssignment < Message
9823
12805
  order[41] = 0
9824
12806
  super(555, 600, order)
9825
12807
  end
12808
+
12809
+ class NoLegSecurityAltID < Quickfix::Group
12810
+ def initialize
12811
+ order = Quickfix::IntArray.new(3)
12812
+ order[0] = 605
12813
+ order[1] = 606
12814
+ order[2] = 0
12815
+ super(604, 605, order)
12816
+ end
12817
+ end
9826
12818
  end
9827
12819
 
9828
12820
  class NoUnderlyings < Quickfix::Group
@@ -9877,6 +12869,26 @@ class CollateralAssignment < Message
9877
12869
  order[46] = 0
9878
12870
  super(711, 311, order)
9879
12871
  end
12872
+
12873
+ class NoUnderlyingSecurityAltID < Quickfix::Group
12874
+ def initialize
12875
+ order = Quickfix::IntArray.new(3)
12876
+ order[0] = 458
12877
+ order[1] = 459
12878
+ order[2] = 0
12879
+ super(457, 458, order)
12880
+ end
12881
+ end
12882
+
12883
+ class NoUnderlyingStips < Quickfix::Group
12884
+ def initialize
12885
+ order = Quickfix::IntArray.new(3)
12886
+ order[0] = 888
12887
+ order[1] = 889
12888
+ order[2] = 0
12889
+ super(887, 888, order)
12890
+ end
12891
+ end
9880
12892
  end
9881
12893
 
9882
12894
  class NoTrdRegTimestamps < Quickfix::Group
@@ -9911,6 +12923,39 @@ class CollateralAssignment < Message
9911
12923
  super(232, 233, order)
9912
12924
  end
9913
12925
  end
12926
+
12927
+ class NoDlvyInst < Quickfix::Group
12928
+ def initialize
12929
+ order = Quickfix::IntArray.new(4)
12930
+ order[0] = 165
12931
+ order[1] = 787
12932
+ order[2] = 781
12933
+ order[3] = 0
12934
+ super(85, 165, order)
12935
+ end
12936
+
12937
+ class NoSettlPartyIDs < Quickfix::Group
12938
+ def initialize
12939
+ order = Quickfix::IntArray.new(5)
12940
+ order[0] = 782
12941
+ order[1] = 783
12942
+ order[2] = 784
12943
+ order[3] = 801
12944
+ order[4] = 0
12945
+ super(781, 782, order)
12946
+ end
12947
+
12948
+ class NoSettlPartySubIDs < Quickfix::Group
12949
+ def initialize
12950
+ order = Quickfix::IntArray.new(3)
12951
+ order[0] = 785
12952
+ order[1] = 786
12953
+ order[2] = 0
12954
+ super(801, 785, order)
12955
+ end
12956
+ end
12957
+ end
12958
+ end
9914
12959
  end
9915
12960
 
9916
12961
  class CollateralResponse < Message
@@ -9960,6 +13005,28 @@ class CollateralResponse < Message
9960
13005
  end
9961
13006
  end
9962
13007
 
13008
+ class NoSecurityAltID < Quickfix::Group
13009
+ def initialize
13010
+ order = Quickfix::IntArray.new(3)
13011
+ order[0] = 455
13012
+ order[1] = 456
13013
+ order[2] = 0
13014
+ super(454, 455, order)
13015
+ end
13016
+ end
13017
+
13018
+ class NoEvents < Quickfix::Group
13019
+ def initialize
13020
+ order = Quickfix::IntArray.new(5)
13021
+ order[0] = 865
13022
+ order[1] = 866
13023
+ order[2] = 867
13024
+ order[3] = 868
13025
+ order[4] = 0
13026
+ super(864, 865, order)
13027
+ end
13028
+ end
13029
+
9963
13030
  class NoLegs < Quickfix::Group
9964
13031
  def initialize
9965
13032
  order = Quickfix::IntArray.new(42)
@@ -10007,6 +13074,16 @@ class CollateralResponse < Message
10007
13074
  order[41] = 0
10008
13075
  super(555, 600, order)
10009
13076
  end
13077
+
13078
+ class NoLegSecurityAltID < Quickfix::Group
13079
+ def initialize
13080
+ order = Quickfix::IntArray.new(3)
13081
+ order[0] = 605
13082
+ order[1] = 606
13083
+ order[2] = 0
13084
+ super(604, 605, order)
13085
+ end
13086
+ end
10010
13087
  end
10011
13088
 
10012
13089
  class NoUnderlyings < Quickfix::Group
@@ -10061,6 +13138,26 @@ class CollateralResponse < Message
10061
13138
  order[46] = 0
10062
13139
  super(711, 311, order)
10063
13140
  end
13141
+
13142
+ class NoUnderlyingSecurityAltID < Quickfix::Group
13143
+ def initialize
13144
+ order = Quickfix::IntArray.new(3)
13145
+ order[0] = 458
13146
+ order[1] = 459
13147
+ order[2] = 0
13148
+ super(457, 458, order)
13149
+ end
13150
+ end
13151
+
13152
+ class NoUnderlyingStips < Quickfix::Group
13153
+ def initialize
13154
+ order = Quickfix::IntArray.new(3)
13155
+ order[0] = 888
13156
+ order[1] = 889
13157
+ order[2] = 0
13158
+ super(887, 888, order)
13159
+ end
13160
+ end
10064
13161
  end
10065
13162
 
10066
13163
  class NoTrdRegTimestamps < Quickfix::Group
@@ -10144,6 +13241,28 @@ class CollateralReport < Message
10144
13241
  end
10145
13242
  end
10146
13243
 
13244
+ class NoSecurityAltID < Quickfix::Group
13245
+ def initialize
13246
+ order = Quickfix::IntArray.new(3)
13247
+ order[0] = 455
13248
+ order[1] = 456
13249
+ order[2] = 0
13250
+ super(454, 455, order)
13251
+ end
13252
+ end
13253
+
13254
+ class NoEvents < Quickfix::Group
13255
+ def initialize
13256
+ order = Quickfix::IntArray.new(5)
13257
+ order[0] = 865
13258
+ order[1] = 866
13259
+ order[2] = 867
13260
+ order[3] = 868
13261
+ order[4] = 0
13262
+ super(864, 865, order)
13263
+ end
13264
+ end
13265
+
10147
13266
  class NoLegs < Quickfix::Group
10148
13267
  def initialize
10149
13268
  order = Quickfix::IntArray.new(42)
@@ -10191,6 +13310,16 @@ class CollateralReport < Message
10191
13310
  order[41] = 0
10192
13311
  super(555, 600, order)
10193
13312
  end
13313
+
13314
+ class NoLegSecurityAltID < Quickfix::Group
13315
+ def initialize
13316
+ order = Quickfix::IntArray.new(3)
13317
+ order[0] = 605
13318
+ order[1] = 606
13319
+ order[2] = 0
13320
+ super(604, 605, order)
13321
+ end
13322
+ end
10194
13323
  end
10195
13324
 
10196
13325
  class NoUnderlyings < Quickfix::Group
@@ -10244,6 +13373,26 @@ class CollateralReport < Message
10244
13373
  order[45] = 0
10245
13374
  super(711, 311, order)
10246
13375
  end
13376
+
13377
+ class NoUnderlyingSecurityAltID < Quickfix::Group
13378
+ def initialize
13379
+ order = Quickfix::IntArray.new(3)
13380
+ order[0] = 458
13381
+ order[1] = 459
13382
+ order[2] = 0
13383
+ super(457, 458, order)
13384
+ end
13385
+ end
13386
+
13387
+ class NoUnderlyingStips < Quickfix::Group
13388
+ def initialize
13389
+ order = Quickfix::IntArray.new(3)
13390
+ order[0] = 888
13391
+ order[1] = 889
13392
+ order[2] = 0
13393
+ super(887, 888, order)
13394
+ end
13395
+ end
10247
13396
  end
10248
13397
 
10249
13398
  class NoTrdRegTimestamps < Quickfix::Group
@@ -10278,6 +13427,39 @@ class CollateralReport < Message
10278
13427
  super(232, 233, order)
10279
13428
  end
10280
13429
  end
13430
+
13431
+ class NoDlvyInst < Quickfix::Group
13432
+ def initialize
13433
+ order = Quickfix::IntArray.new(4)
13434
+ order[0] = 165
13435
+ order[1] = 787
13436
+ order[2] = 781
13437
+ order[3] = 0
13438
+ super(85, 165, order)
13439
+ end
13440
+
13441
+ class NoSettlPartyIDs < Quickfix::Group
13442
+ def initialize
13443
+ order = Quickfix::IntArray.new(5)
13444
+ order[0] = 782
13445
+ order[1] = 783
13446
+ order[2] = 784
13447
+ order[3] = 801
13448
+ order[4] = 0
13449
+ super(781, 782, order)
13450
+ end
13451
+
13452
+ class NoSettlPartySubIDs < Quickfix::Group
13453
+ def initialize
13454
+ order = Quickfix::IntArray.new(3)
13455
+ order[0] = 785
13456
+ order[1] = 786
13457
+ order[2] = 0
13458
+ super(801, 785, order)
13459
+ end
13460
+ end
13461
+ end
13462
+ end
10281
13463
  end
10282
13464
 
10283
13465
  class CollateralInquiry < Message
@@ -10336,6 +13518,28 @@ class CollateralInquiry < Message
10336
13518
  end
10337
13519
  end
10338
13520
 
13521
+ class NoSecurityAltID < Quickfix::Group
13522
+ def initialize
13523
+ order = Quickfix::IntArray.new(3)
13524
+ order[0] = 455
13525
+ order[1] = 456
13526
+ order[2] = 0
13527
+ super(454, 455, order)
13528
+ end
13529
+ end
13530
+
13531
+ class NoEvents < Quickfix::Group
13532
+ def initialize
13533
+ order = Quickfix::IntArray.new(5)
13534
+ order[0] = 865
13535
+ order[1] = 866
13536
+ order[2] = 867
13537
+ order[3] = 868
13538
+ order[4] = 0
13539
+ super(864, 865, order)
13540
+ end
13541
+ end
13542
+
10339
13543
  class NoLegs < Quickfix::Group
10340
13544
  def initialize
10341
13545
  order = Quickfix::IntArray.new(42)
@@ -10383,6 +13587,16 @@ class CollateralInquiry < Message
10383
13587
  order[41] = 0
10384
13588
  super(555, 600, order)
10385
13589
  end
13590
+
13591
+ class NoLegSecurityAltID < Quickfix::Group
13592
+ def initialize
13593
+ order = Quickfix::IntArray.new(3)
13594
+ order[0] = 605
13595
+ order[1] = 606
13596
+ order[2] = 0
13597
+ super(604, 605, order)
13598
+ end
13599
+ end
10386
13600
  end
10387
13601
 
10388
13602
  class NoUnderlyings < Quickfix::Group
@@ -10436,6 +13650,26 @@ class CollateralInquiry < Message
10436
13650
  order[45] = 0
10437
13651
  super(711, 311, order)
10438
13652
  end
13653
+
13654
+ class NoUnderlyingSecurityAltID < Quickfix::Group
13655
+ def initialize
13656
+ order = Quickfix::IntArray.new(3)
13657
+ order[0] = 458
13658
+ order[1] = 459
13659
+ order[2] = 0
13660
+ super(457, 458, order)
13661
+ end
13662
+ end
13663
+
13664
+ class NoUnderlyingStips < Quickfix::Group
13665
+ def initialize
13666
+ order = Quickfix::IntArray.new(3)
13667
+ order[0] = 888
13668
+ order[1] = 889
13669
+ order[2] = 0
13670
+ super(887, 888, order)
13671
+ end
13672
+ end
10439
13673
  end
10440
13674
 
10441
13675
  class NoTrdRegTimestamps < Quickfix::Group
@@ -10458,6 +13692,39 @@ class CollateralInquiry < Message
10458
13692
  super(232, 233, order)
10459
13693
  end
10460
13694
  end
13695
+
13696
+ class NoDlvyInst < Quickfix::Group
13697
+ def initialize
13698
+ order = Quickfix::IntArray.new(4)
13699
+ order[0] = 165
13700
+ order[1] = 787
13701
+ order[2] = 781
13702
+ order[3] = 0
13703
+ super(85, 165, order)
13704
+ end
13705
+
13706
+ class NoSettlPartyIDs < Quickfix::Group
13707
+ def initialize
13708
+ order = Quickfix::IntArray.new(5)
13709
+ order[0] = 782
13710
+ order[1] = 783
13711
+ order[2] = 784
13712
+ order[3] = 801
13713
+ order[4] = 0
13714
+ super(781, 782, order)
13715
+ end
13716
+
13717
+ class NoSettlPartySubIDs < Quickfix::Group
13718
+ def initialize
13719
+ order = Quickfix::IntArray.new(3)
13720
+ order[0] = 785
13721
+ order[1] = 786
13722
+ order[2] = 0
13723
+ super(801, 785, order)
13724
+ end
13725
+ end
13726
+ end
13727
+ end
10461
13728
  end
10462
13729
 
10463
13730
  class NetworkCounterpartySystemStatusRequest < Message
@@ -10570,6 +13837,28 @@ class CollateralInquiryAck < Message
10570
13837
  end
10571
13838
  end
10572
13839
 
13840
+ class NoSecurityAltID < Quickfix::Group
13841
+ def initialize
13842
+ order = Quickfix::IntArray.new(3)
13843
+ order[0] = 455
13844
+ order[1] = 456
13845
+ order[2] = 0
13846
+ super(454, 455, order)
13847
+ end
13848
+ end
13849
+
13850
+ class NoEvents < Quickfix::Group
13851
+ def initialize
13852
+ order = Quickfix::IntArray.new(5)
13853
+ order[0] = 865
13854
+ order[1] = 866
13855
+ order[2] = 867
13856
+ order[3] = 868
13857
+ order[4] = 0
13858
+ super(864, 865, order)
13859
+ end
13860
+ end
13861
+
10573
13862
  class NoLegs < Quickfix::Group
10574
13863
  def initialize
10575
13864
  order = Quickfix::IntArray.new(42)
@@ -10617,6 +13906,16 @@ class CollateralInquiryAck < Message
10617
13906
  order[41] = 0
10618
13907
  super(555, 600, order)
10619
13908
  end
13909
+
13910
+ class NoLegSecurityAltID < Quickfix::Group
13911
+ def initialize
13912
+ order = Quickfix::IntArray.new(3)
13913
+ order[0] = 605
13914
+ order[1] = 606
13915
+ order[2] = 0
13916
+ super(604, 605, order)
13917
+ end
13918
+ end
10620
13919
  end
10621
13920
 
10622
13921
  class NoUnderlyings < Quickfix::Group
@@ -10670,6 +13969,26 @@ class CollateralInquiryAck < Message
10670
13969
  order[45] = 0
10671
13970
  super(711, 311, order)
10672
13971
  end
13972
+
13973
+ class NoUnderlyingSecurityAltID < Quickfix::Group
13974
+ def initialize
13975
+ order = Quickfix::IntArray.new(3)
13976
+ order[0] = 458
13977
+ order[1] = 459
13978
+ order[2] = 0
13979
+ super(457, 458, order)
13980
+ end
13981
+ end
13982
+
13983
+ class NoUnderlyingStips < Quickfix::Group
13984
+ def initialize
13985
+ order = Quickfix::IntArray.new(3)
13986
+ order[0] = 888
13987
+ order[1] = 889
13988
+ order[2] = 0
13989
+ super(887, 888, order)
13990
+ end
13991
+ end
10673
13992
  end
10674
13993
  end
10675
13994