Skip to content

Commit 5eb7ce2

Browse files
committed
ADD: Add OPRA.PILLAR stat types
1 parent bc8ff79 commit 5eb7ce2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
data through the client
1616
- Added `map_symbols`, `pretty_px`, and `pretty_ts` to `BatchJob` response
1717
- Added `ARCX.PILLAR.ARCX` publisher
18+
- Added `ClosePrice` and `NetChange` `StatType`s used in the `OPRA.PILLAR` dataset
1819

1920
### Breaking changes
2021
- Remove `default_value` parameter from `Historical::SymbologyResolve`

include/databento/enums.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,11 @@ enum StatType : std::uint16_t {
233233
// The volume-weighted average price (VWAP) for a fixing period. `price` will
234234
// be set.
235235
FixingPrice = 10,
236+
// The last trade price during a trading session. `price` will be set.
237+
ClosePrice = 11,
238+
// The change in price from the close price of the previous trading session to
239+
// the most recent trading session. `price` will be set.
240+
NetChange = 12,
236241
};
237242
} // namespace stat_type
238243
using stat_type::StatType;

0 commit comments

Comments
 (0)