Skip to content

Commit 36bac42

Browse files
committed
ADD: Add variant to MatchAlgorithm
1 parent b058949 commit 36bac42

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.35.0 - TBD
4+
5+
### Enhancements
6+
- Added `InstitutionalPrioritization` variant to `MatchingAlgorithm`
7+
38
## 0.34.0 - 2025-04-22
49

510
### Enhancements

include/databento/enums.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ enum MatchAlgorithm : char {
208208
ThresholdProRataLmm = 'Q',
209209
EurodollarFutures = 'Y',
210210
TimeProRata = 'P',
211+
InstitutionalPrioritization = 'V',
211212
};
212213
} // namespace match_algorithm
213214
using match_algorithm::MatchAlgorithm;

src/enums.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,9 @@ const char* ToString(MatchAlgorithm match_algorithm) {
433433
case match_algorithm::TimeProRata: {
434434
return "TimeProRata";
435435
}
436+
case match_algorithm::InstitutionalPrioritization: {
437+
return "InstitutionalPrioritization";
438+
}
436439
default: {
437440
return "Unknown";
438441
}

0 commit comments

Comments
 (0)