Commit 6abd012 1 parent 22af4a0 commit 6abd012 Copy full SHA for 6abd012
File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.24.0 - TBD
4
+
5
+ ### Enhancements
6
+ - Added new ` None ` ` Action ` variant that will be gradually rolled out
7
+ to historical and live ` GLBX.MDP3 ` data
8
+
3
9
## 0.23.0 - 2024-09-25
4
10
5
11
### Enhancements
Original file line number Diff line number Diff line change @@ -149,9 +149,11 @@ enum RType : std::uint8_t {
149
149
} // namespace rtype
150
150
using rtype::RType;
151
151
152
- // A tick action .
152
+ // An order event or order book operation .
153
153
//
154
- // Additional actions may be added in the future.
154
+ // For example usage see:
155
+ // - https://databento.com/docs/examples/order-book/order-actions
156
+ // - https://databento.com/docs/examples/order-book/order-tracking
155
157
namespace action {
156
158
// enum because future variants may be added in the future.
157
159
enum Action : char {
@@ -167,6 +169,8 @@ enum Action : char {
167
169
Add = ' A' ,
168
170
// Reset the book; clear all orders for an instrument.
169
171
Clear = ' R' ,
172
+ // Has no effect on the book, but may carry `flags` or other information.
173
+ None = ' N' ,
170
174
};
171
175
} // namespace action
172
176
using action::Action;
Original file line number Diff line number Diff line change @@ -354,6 +354,9 @@ const char* ToString(Action action) {
354
354
case Action::Clear: {
355
355
return " Clear" ;
356
356
}
357
+ case Action::None: {
358
+ return " None" ;
359
+ }
357
360
default : {
358
361
return " Unknown" ;
359
362
}
You can’t perform that action at this time.
0 commit comments