nautilus_model/data/deltas.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
// -------------------------------------------------------------------------------------------------
// Copyright (C) 2015-2024 Nautech Systems Pty Ltd. All rights reserved.
// https://nautechsystems.io
//
// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
//! An `OrderBookDeltas` container type to carry a bulk of `OrderBookDelta` records.
use std::{
fmt::{Display, Formatter},
hash::{Hash, Hasher},
ops::{Deref, DerefMut},
};
use nautilus_core::{
correctness::{check_predicate_true, FAILED},
nanos::UnixNanos,
};
use super::{delta::OrderBookDelta, GetTsInit};
use crate::identifiers::InstrumentId;
/// Represents a grouped batch of `OrderBookDelta` updates for an `OrderBook`.
///
/// This type cannot be `repr(C)` due to the `deltas` vec.
#[derive(Clone, Debug)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.model")
)]
pub struct OrderBookDeltas {
/// The instrument ID for the book.
pub instrument_id: InstrumentId,
/// The order book deltas.
pub deltas: Vec<OrderBookDelta>,
/// The record flags bit field, indicating event end and data information.
pub flags: u8,
/// The message sequence number assigned at the venue.
pub sequence: u64,
/// UNIX timestamp (nanoseconds) when the book event occurred.
pub ts_event: UnixNanos,
/// UNIX timestamp (nanoseconds) when the struct was initialized.
pub ts_init: UnixNanos,
}
impl OrderBookDeltas {
/// Creates a new [`OrderBookDeltas`] instance.
#[allow(clippy::too_many_arguments)]
#[must_use]
pub fn new(instrument_id: InstrumentId, deltas: Vec<OrderBookDelta>) -> Self {
Self::new_checked(instrument_id, deltas).expect(FAILED)
}
/// Creates a new [`OrderBookDeltas`] instance with correctness checking.
///
/// # Notes
///
/// PyO3 requires a `Result` type for proper error handling and stacktrace printing in Python.
#[allow(clippy::too_many_arguments)]
pub fn new_checked(
instrument_id: InstrumentId,
deltas: Vec<OrderBookDelta>,
) -> anyhow::Result<Self> {
check_predicate_true(!deltas.is_empty(), "`deltas` cannot be empty")?;
// SAFETY: We asserted `deltas` is not empty
let last = deltas.last().unwrap();
let flags = last.flags;
let sequence = last.sequence;
let ts_event = last.ts_event;
let ts_init = last.ts_init;
Ok(Self {
instrument_id,
deltas,
flags,
sequence,
ts_event,
ts_init,
})
}
}
impl PartialEq<Self> for OrderBookDeltas {
fn eq(&self, other: &Self) -> bool {
self.instrument_id == other.instrument_id && self.sequence == other.sequence
}
}
impl Eq for OrderBookDeltas {}
impl Hash for OrderBookDeltas {
fn hash<H: Hasher>(&self, state: &mut H) {
self.instrument_id.hash(state);
self.sequence.hash(state);
}
}
// TODO: Implement
// impl Serializable for OrderBookDeltas {}
// TODO: Exact format for Debug and Display TBD
impl Display for OrderBookDeltas {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{},len={},flags={},sequence={},ts_event={},ts_init={}",
self.instrument_id,
self.deltas.len(),
self.flags,
self.sequence,
self.ts_event,
self.ts_init
)
}
}
impl GetTsInit for OrderBookDeltas {
fn ts_init(&self) -> UnixNanos {
self.ts_init
}
}
/// C compatible Foreign Function Interface (FFI) for an underlying [`OrderBookDeltas`].
///
/// This struct wraps `OrderBookDeltas` in a way that makes it compatible with C function
/// calls, enabling interaction with `OrderBookDeltas` in a C environment.
///
/// It implements the `Deref` trait, allowing instances of `OrderBookDeltas_API` to be
/// dereferenced to `OrderBookDeltas`, providing access to `OrderBookDeltas`'s methods without
/// having to manually access the underlying `OrderBookDeltas` instance.
#[repr(C)]
#[derive(Debug, Clone, PartialEq)]
#[allow(non_camel_case_types)]
pub struct OrderBookDeltas_API(Box<OrderBookDeltas>);
// TODO: This wrapper will go along with Cython
impl OrderBookDeltas_API {
#[must_use]
pub fn new(deltas: OrderBookDeltas) -> Self {
Self(Box::new(deltas))
}
}
impl Deref for OrderBookDeltas_API {
type Target = OrderBookDeltas;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for OrderBookDeltas_API {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
////////////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////////////
#[cfg(test)]
mod tests {
use rstest::rstest;
use super::*;
use crate::{
data::{order::BookOrder, stubs::stub_deltas},
enums::{BookAction, OrderSide},
types::{price::Price, quantity::Quantity},
};
#[rstest]
fn test_new() {
let instrument_id = InstrumentId::from("AAPL.XNAS");
let flags = 32; // Snapshot flag
let sequence = 0;
let ts_event = 1;
let ts_init = 2;
let delta0 =
OrderBookDelta::clear(instrument_id, sequence, ts_event.into(), ts_init.into());
let delta1 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Sell,
Price::from("102.00"),
Quantity::from("300"),
1,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let delta2 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Sell,
Price::from("101.00"),
Quantity::from("200"),
2,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let delta3 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Sell,
Price::from("100.00"),
Quantity::from("100"),
3,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let delta4 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Buy,
Price::from("99.00"),
Quantity::from("100"),
4,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let delta5 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Buy,
Price::from("98.00"),
Quantity::from("200"),
5,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let delta6 = OrderBookDelta::new(
instrument_id,
BookAction::Add,
BookOrder::new(
OrderSide::Buy,
Price::from("97.00"),
Quantity::from("300"),
6,
),
flags,
sequence,
ts_event.into(),
ts_init.into(),
);
let deltas = OrderBookDeltas::new(
instrument_id,
vec![delta0, delta1, delta2, delta3, delta4, delta5, delta6],
);
assert_eq!(deltas.instrument_id, instrument_id);
assert_eq!(deltas.deltas.len(), 7);
assert_eq!(deltas.flags, flags);
assert_eq!(deltas.sequence, sequence);
assert_eq!(deltas.ts_event, ts_event);
assert_eq!(deltas.ts_init, ts_init);
}
// TODO: Exact format for Debug and Display TBD
#[rstest]
fn test_display(stub_deltas: OrderBookDeltas) {
let deltas = stub_deltas;
assert_eq!(
format!("{deltas}"),
"AAPL.XNAS,len=7,flags=32,sequence=0,ts_event=1,ts_init=2".to_string()
);
}
}