File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff 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
238243using stat_type::StatType;
You can’t perform that action at this time.
0 commit comments