Skip to content

Commit 1140ae6

Browse files
author
dxcity
committed
tagging release 3.291
1 parent 39609e2 commit 1140ae6

File tree

46 files changed

+70
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+70
-45
lines changed

ReleaseNotes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
QDS 3.291:
3+
4+
* [QD-1239] New order sources glbx, ntv and xeur
5+
26
QDS 3.290:
37

48
* [QD-1238] Add getZoneId to Timing instances

auth/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>

dxfeed-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>

dxfeed-api/src/main/java/com/dxfeed/event/market/OrderSource.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ public final class OrderSource extends IndexedEventSource {
134134
*/
135135
public static final OrderSource NTV = new OrderSource("NTV", PUB_ORDER);
136136

137+
/**
138+
* NASDAQ Total View. Record for price level book.
139+
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
140+
* source and the corresponding subscription can be observed via {@link DXPublisher}.
141+
*/
142+
public static final OrderSource ntv = new OrderSource("ntv", PUB_ORDER);
143+
137144
/**
138145
* NASDAQ Futures Exchange.
139146
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
@@ -260,6 +267,13 @@ public final class OrderSource extends IndexedEventSource {
260267
*/
261268
public static final OrderSource GLBX = new OrderSource("GLBX", PUB_ORDER | PUB_ANALYTIC_ORDER);
262269

270+
/**
271+
* CME Globex. Record for price level book.
272+
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
273+
* source and the corresponding subscription can be observed via {@link DXPublisher}.
274+
*/
275+
public static final OrderSource glbx = new OrderSource("glbx", PUB_ORDER);
276+
263277
/**
264278
* Eris Exchange group of companies.
265279
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
@@ -274,6 +288,13 @@ public final class OrderSource extends IndexedEventSource {
274288
*/
275289
public static final OrderSource XEUR = new OrderSource("XEUR", PUB_ORDER);
276290

291+
/**
292+
* Eurex Exchange. Record for price level book.
293+
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
294+
* source and the corresponding subscription can be observed via {@link DXPublisher}.
295+
*/
296+
public static final OrderSource xeur = new OrderSource("xeur", PUB_ORDER);
297+
277298
/**
278299
* CBOE Futures Exchange.
279300
* {@link Order} events are {@link #isPublishable(Class) publishable} on this

dxfeed-bin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>

dxfeed-codegen-verify/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
</parent>
1919
<modelVersion>4.0.0</modelVersion>
2020

dxfeed-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>

dxfeed-impl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
</parent>
1919
<modelVersion>4.0.0</modelVersion>
2020

dxfeed-impl/src/main/java/com/dxfeed/event/market/MarketFactoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public void buildScheme(SchemeBuilder builder) {
196196
builder.addRequiredField("Profile", "Description", SerialFieldType.UTF_CHAR_ARRAY);
197197
builder.addOptionalField("Profile", "StatusReason", SerialFieldType.UTF_CHAR_ARRAY, "Profile", "StatusReason", true);
198198

199-
for (String suffix : SystemProperties.getProperty("com.dxfeed.event.market.impl.Order.suffixes", "|#NTV|#NFX|#ESPD|#XNFI|#ICE|#ISE|#DEA|#DEX|#BYX|#BZX|#BATE|#CHIX|#CEUX|#BXTR|#IST|#BI20|#ABE|#FAIR|#GLBX|#ERIS|#XEUR|#CFE|#SMFE").split("\\|")) {
199+
for (String suffix : SystemProperties.getProperty("com.dxfeed.event.market.impl.Order.suffixes", "|#NTV|#ntv|#NFX|#ESPD|#XNFI|#ICE|#ISE|#DEA|#DEX|#BYX|#BZX|#BATE|#CHIX|#CEUX|#BXTR|#IST|#BI20|#ABE|#FAIR|#GLBX|#glbx|#ERIS|#XEUR|#xeur|#CFE|#SMFE").split("\\|")) {
200200
String recordName = "Order" + suffix;
201201
builder.addRequiredField(recordName, "Void", SerialFieldType.VOID, SchemeFieldTime.FIRST_TIME_INT_FIELD);
202202
builder.addRequiredField(recordName, "Index", SerialFieldType.COMPACT_INT, SchemeFieldTime.SECOND_TIME_INT_FIELD);

dxfeed-ipf-filter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>QD</artifactId>
1616
<groupId>com.devexperts.qd</groupId>
17-
<version>3.290</version>
17+
<version>3.291</version>
1818
</parent>
1919
<modelVersion>4.0.0</modelVersion>
2020

0 commit comments

Comments
 (0)