Skip to content

Commit ecbca60

Browse files
author
Roberto Mesado
committed
MOD: ICE US to ICE Futures US
1 parent b4ac117 commit ecbca60

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
## 0.50.0 - 2025-03-18
122122

123123
#### Enhancements
124-
- Added new venues, datasets, and publishers for ICE US, ICE Europe Financials products, Eurex, and European Energy Exchange (EEX)
124+
- Added new venues, datasets, and publishers for ICE Futures US, ICE Europe Financials products, Eurex, and European Energy Exchange (EEX)
125125
- Added export of the following enums from `databento_dbn` to the root `databento` package:
126126
- `Action`
127127
- `InstrumentClass`
@@ -148,7 +148,7 @@
148148
## 0.49.0 - 2025-03-04
149149

150150
#### Enhancements
151-
- Added new venues, datasets, and publishers for ICE US and for ICE Europe Financials products
151+
- Added new venues, datasets, and publishers for ICE Futures US and for ICE Europe Financials products
152152
- Added a `keep_zip` parameter to `Historical.batch.download()`. When `True`, and downloading all files, the jobs contents will be saved as a ZIP file
153153
- Calling `Live.terminate()` will now attempt to write EOF before aborting the connection to help close the remote end
154154

databento/common/publishers.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class Venue(StringyMixin, str, Enum):
111111
EQUS
112112
Databento US Equities - Consolidated.
113113
IFUS
114-
ICE US.
114+
ICE Futures US.
115115
IFLL
116116
ICE Europe Financials.
117117
XEUR
@@ -490,7 +490,7 @@ def description(self) -> str:
490490
if self == Venue.EQUS:
491491
return "Databento US Equities - Consolidated"
492492
if self == Venue.IFUS:
493-
return "ICE US"
493+
return "ICE Futures US"
494494
if self == Venue.IFLL:
495495
return "ICE Europe Financials"
496496
if self == Venue.XEUR:
@@ -577,7 +577,7 @@ class Dataset(StringyMixin, str, Enum):
577577
EQUS_MINI
578578
Databento US Equities Mini.
579579
IFUS_IMPACT
580-
ICE US iMpact.
580+
ICE Futures US iMpact.
581581
IFLL_IMPACT
582582
ICE Europe Financials iMpact.
583583
XEUR_EOBI
@@ -872,7 +872,7 @@ def description(self) -> str:
872872
if self == Dataset.EQUS_MINI:
873873
return "Databento US Equities Mini"
874874
if self == Dataset.IFUS_IMPACT:
875-
return "ICE US iMpact"
875+
return "ICE Futures US iMpact"
876876
if self == Dataset.IFLL_IMPACT:
877877
return "ICE Europe Financials iMpact"
878878
if self == Dataset.XEUR_EOBI:
@@ -1081,9 +1081,9 @@ class Publisher(StringyMixin, str, Enum):
10811081
XNYS_TRADES_EQUS
10821082
NYSE Trades - Consolidated.
10831083
IFUS_IMPACT_IFUS
1084-
ICE US.
1084+
ICE Futures US.
10851085
IFUS_IMPACT_XOFF
1086-
ICE US - Off-Market Trades.
1086+
ICE Futures US - Off-Market Trades.
10871087
IFLL_IMPACT_IFLL
10881088
ICE Europe Financials.
10891089
IFLL_IMPACT_XOFF
@@ -2261,9 +2261,9 @@ def description(self) -> str:
22612261
if self == Publisher.XNYS_TRADES_EQUS:
22622262
return "NYSE Trades - Consolidated"
22632263
if self == Publisher.IFUS_IMPACT_IFUS:
2264-
return "ICE US"
2264+
return "ICE Futures US"
22652265
if self == Publisher.IFUS_IMPACT_XOFF:
2266-
return "ICE US - Off-Market Trades"
2266+
return "ICE Futures US - Off-Market Trades"
22672267
if self == Publisher.IFLL_IMPACT_IFLL:
22682268
return "ICE Europe (Financials)"
22692269
if self == Publisher.IFLL_IMPACT_XOFF:

0 commit comments

Comments
 (0)