market-maker-rs 0.2.0

A Rust library implementing quantitative market making strategies, starting with the Avellaneda-Stoikov model
Documentation
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//! Strategy interface traits.
//!
//! This module defines the traits for implementing market-making strategies.
//! Currently supports the Avellaneda-Stoikov model in both synchronous and asynchronous forms.
//!
//! # Examples
//!
//! Using the default synchronous implementation:
//!
//! ```
//! use market_maker_rs::strategy::interface::{AvellanedaStoikov, DefaultAvellanedaStoikov};
//! use market_maker_rs::dec;
//!
//! let strategy = DefaultAvellanedaStoikov;
//! let (bid, ask) = strategy.calculate_optimal_quotes(
//!     dec!(100.0),
//!     dec!(0.0),
//!     dec!(0.1),
//!     dec!(0.2),
//!     3600000,
//!     dec!(1.5),
//! ).unwrap();
//!
//! assert!(bid < ask);
//! ```

use crate::Decimal;
use crate::types::error::MMResult;
use async_trait::async_trait;

/// Trait for implementing the Avellaneda-Stoikov market-making strategy (synchronous).
///
/// This trait defines the core operations needed for a market-making strategy based on the
/// Avellaneda-Stoikov model. Implementors must provide methods for calculating:
/// - Reservation price (adjusted mid-price based on inventory risk)
/// - Optimal spread (based on volatility and order intensity)
/// - Optimal quotes (bid/ask prices)
///
/// # Examples
///
/// ```
/// use market_maker_rs::strategy::interface::AvellanedaStoikov;
/// use market_maker_rs::{Decimal, dec};
/// use market_maker_rs::types::error::MMResult;
///
/// struct MyStrategy;
///
/// impl AvellanedaStoikov for MyStrategy {
///     fn calculate_reservation_price(
///         &self,
///         mid_price: Decimal,
///         inventory: Decimal,
///         risk_aversion: Decimal,
///         volatility: Decimal,
///         time_to_terminal_ms: u64,
///     ) -> MMResult<Decimal> {
///         // Implementation details
///         Ok(mid_price)
///     }
///
///     fn calculate_optimal_spread(
///         &self,
///         risk_aversion: Decimal,
///         volatility: Decimal,
///         time_to_terminal_ms: u64,
///         order_intensity: Decimal,
///     ) -> MMResult<Decimal> {
///         // Implementation details
///         Ok(dec!(0.1))
///     }
///
///     fn calculate_optimal_quotes(
///         &self,
///         mid_price: Decimal,
///         inventory: Decimal,
///         risk_aversion: Decimal,
///         volatility: Decimal,
///         time_to_terminal_ms: u64,
///         order_intensity: Decimal,
///     ) -> MMResult<(Decimal, Decimal)> {
///         // Implementation details
///         Ok((dec!(99.9), dec!(100.1)))
///     }
/// }
/// ```
pub trait AvellanedaStoikov {
    /// Calculates the reservation price based on current market conditions and inventory.
    ///
    /// The reservation price represents the "fair value" adjusted for inventory risk.
    /// A market maker with positive inventory (long) will have a reservation price
    /// below the mid-price, incentivizing sells.
    ///
    /// # Arguments
    ///
    /// * `mid_price` - Current mid-price of the asset
    /// * `inventory` - Current inventory position (positive = long, negative = short)
    /// * `risk_aversion` - Risk aversion parameter (gamma), must be positive
    /// * `volatility` - Volatility estimate (annualized), must be positive
    /// * `time_to_terminal_ms` - Time remaining until terminal time, in milliseconds
    ///
    /// # Returns
    ///
    /// The reservation price adjusted for inventory risk.
    ///
    /// # Errors
    ///
    /// Returns an error if parameters are invalid or calculation fails.
    fn calculate_reservation_price(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
    ) -> MMResult<Decimal>;

    /// Calculates the optimal spread based on market conditions and strategy parameters.
    ///
    /// The spread accounts for both inventory risk and adverse selection risk.
    ///
    /// # Arguments
    ///
    /// * `risk_aversion` - Risk aversion parameter (gamma), must be positive
    /// * `volatility` - Volatility estimate (annualized), must be positive
    /// * `time_to_terminal_ms` - Time remaining until terminal time, in milliseconds
    /// * `order_intensity` - Order intensity parameter (k), must be positive
    ///
    /// # Returns
    ///
    /// The optimal spread in price units.
    ///
    /// # Errors
    ///
    /// Returns an error if parameters are invalid or calculation fails.
    fn calculate_optimal_spread(
        &self,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<Decimal>;

    /// Calculates optimal bid and ask prices based on the Avellaneda-Stoikov model.
    ///
    /// This combines reservation price and spread calculations to produce bid/ask quotes.
    ///
    /// # Arguments
    ///
    /// * `mid_price` - Current mid-price
    /// * `inventory` - Current inventory position
    /// * `risk_aversion` - Risk aversion parameter (gamma)
    /// * `volatility` - Volatility estimate (annualized)
    /// * `time_to_terminal_ms` - Time to terminal in milliseconds
    /// * `order_intensity` - Order intensity parameter (k)
    ///
    /// # Returns
    ///
    /// A tuple `(bid_price, ask_price)`.
    ///
    /// # Errors
    ///
    /// Returns errors from underlying calculations if inputs are invalid.
    fn calculate_optimal_quotes(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<(Decimal, Decimal)>;
}

/// Trait for implementing the Avellaneda-Stoikov strategy with async operations.
///
/// This trait mirrors `AvellanedaStoikov` but with asynchronous method signatures,
/// allowing for non-blocking calculations that might involve I/O operations, network calls,
/// or expensive computations that should be run on a separate executor.
///
/// # Note
///
/// This trait is currently a placeholder for future async support.
/// To use it, you'll need to add an `async` feature to `Cargo.toml`.
///
/// # Examples
///
/// ```ignore
/// use market_maker_rs::strategy::interface::AsyncAvellanedaStoikov;
/// use market_maker_rs::{Decimal, dec};
/// use market_maker_rs::types::error::MMResult;
///
/// struct MyAsyncStrategy;
///
/// impl AsyncAvellanedaStoikov for MyAsyncStrategy {
///     async fn calculate_reservation_price(
///         &self,
///         mid_price: Decimal,
///         inventory: Decimal,
///         risk_aversion: Decimal,
///         volatility: Decimal,
///         time_to_terminal_ms: u64,
///     ) -> MMResult<Decimal> {
///         // Async implementation
///         Ok(mid_price)
///     }
///
///     // ... other methods
/// }
/// ```
#[async_trait]
pub trait AsyncAvellanedaStoikov {
    /// Asynchronously calculates the reservation price.
    ///
    /// See `AvellanedaStoikov::calculate_reservation_price` for details.
    async fn calculate_reservation_price(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
    ) -> MMResult<Decimal>;

    /// Asynchronously calculates the optimal spread.
    ///
    /// See `AvellanedaStoikov::calculate_optimal_spread` for details.
    async fn calculate_optimal_spread(
        &self,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<Decimal>;

    /// Asynchronously calculates optimal bid and ask prices.
    ///
    /// See `AvellanedaStoikov::calculate_optimal_quotes` for details.
    async fn calculate_optimal_quotes(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<(Decimal, Decimal)>;
}

/// Default implementation of the Avellaneda-Stoikov strategy.
///
/// This zero-sized struct provides a concrete implementation of the `AvellanedaStoikov` trait
/// using the module-level functions from `avellaneda_stoikov`.
///
/// # Examples
///
/// ```
/// use market_maker_rs::strategy::interface::{AvellanedaStoikov, DefaultAvellanedaStoikov};
/// use market_maker_rs::dec;
///
/// let strategy = DefaultAvellanedaStoikov;
/// let (bid, ask) = strategy.calculate_optimal_quotes(
///     dec!(100.0),
///     dec!(0.0),
///     dec!(0.1),
///     dec!(0.2),
///     3600000,
///     dec!(1.5),
/// ).unwrap();
///
/// assert!(bid < ask);
/// ```
#[derive(Debug, Clone, Copy, Default)]
pub struct DefaultAvellanedaStoikov;

impl AvellanedaStoikov for DefaultAvellanedaStoikov {
    fn calculate_reservation_price(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
    ) -> MMResult<Decimal> {
        crate::strategy::avellaneda_stoikov::calculate_reservation_price(
            mid_price,
            inventory,
            risk_aversion,
            volatility,
            time_to_terminal_ms,
        )
    }

    fn calculate_optimal_spread(
        &self,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<Decimal> {
        crate::strategy::avellaneda_stoikov::calculate_optimal_spread(
            risk_aversion,
            volatility,
            time_to_terminal_ms,
            order_intensity,
        )
    }

    fn calculate_optimal_quotes(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<(Decimal, Decimal)> {
        crate::strategy::avellaneda_stoikov::calculate_optimal_quotes(
            mid_price,
            inventory,
            risk_aversion,
            volatility,
            time_to_terminal_ms,
            order_intensity,
        )
    }
}

/// Default async implementation of the Avellaneda-Stoikov strategy.
///
/// This provides an async wrapper around the synchronous implementation,
/// allowing it to be used in async contexts.
///
/// # Examples
///
/// ```ignore
/// use market_maker_rs::strategy::interface::{AsyncAvellanedaStoikov, DefaultAvellanedaStoikov};
/// use market_maker_rs::dec;
///
/// async fn example() {
///     let strategy = DefaultAvellanedaStoikov;
///     let (bid, ask) = strategy.calculate_optimal_quotes(
///         dec!(100.0),
///         dec!(0.0),
///         dec!(0.1),
///         dec!(0.2),
///         3600000,
///         dec!(1.5),
///     ).await.unwrap();
///
///     assert!(bid < ask);
/// }
/// ```
#[async_trait]
impl AsyncAvellanedaStoikov for DefaultAvellanedaStoikov {
    async fn calculate_reservation_price(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
    ) -> MMResult<Decimal> {
        crate::strategy::avellaneda_stoikov::calculate_reservation_price(
            mid_price,
            inventory,
            risk_aversion,
            volatility,
            time_to_terminal_ms,
        )
    }

    async fn calculate_optimal_spread(
        &self,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<Decimal> {
        crate::strategy::avellaneda_stoikov::calculate_optimal_spread(
            risk_aversion,
            volatility,
            time_to_terminal_ms,
            order_intensity,
        )
    }

    async fn calculate_optimal_quotes(
        &self,
        mid_price: Decimal,
        inventory: Decimal,
        risk_aversion: Decimal,
        volatility: Decimal,
        time_to_terminal_ms: u64,
        order_intensity: Decimal,
    ) -> MMResult<(Decimal, Decimal)> {
        crate::strategy::avellaneda_stoikov::calculate_optimal_quotes(
            mid_price,
            inventory,
            risk_aversion,
            volatility,
            time_to_terminal_ms,
            order_intensity,
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::dec;

    #[test]
    fn test_default_avellaneda_stoikov_sync() {
        let strategy = DefaultAvellanedaStoikov;

        // Usando el trait sync explícitamente
        let (bid, ask) = <DefaultAvellanedaStoikov as AvellanedaStoikov>::calculate_optimal_quotes(
            &strategy,
            dec!(100.0),
            dec!(0.0),
            dec!(0.1),
            dec!(0.2),
            3600000,
            dec!(1.5),
        )
        .unwrap();

        assert!(bid < ask);
        assert!(bid < dec!(100.0));
        assert!(ask > dec!(100.0));
    }

    #[test]
    fn test_default_reservation_price_sync() {
        let strategy = DefaultAvellanedaStoikov;

        let reservation =
            <DefaultAvellanedaStoikov as AvellanedaStoikov>::calculate_reservation_price(
                &strategy,
                dec!(100.0),
                dec!(10.0),
                dec!(0.1),
                dec!(0.2),
                3600000,
            )
            .unwrap();

        assert!(reservation < dec!(100.0)); // Long inventory pushes reservation down
    }

    #[test]
    fn test_default_optimal_spread_sync() {
        let strategy = DefaultAvellanedaStoikov;

        let spread = <DefaultAvellanedaStoikov as AvellanedaStoikov>::calculate_optimal_spread(
            &strategy,
            dec!(0.1),
            dec!(0.2),
            3600000,
            dec!(1.5),
        )
        .unwrap();

        assert!(spread > Decimal::ZERO);
    }

    #[tokio::test]
    async fn test_default_avellaneda_stoikov_async() {
        let strategy = DefaultAvellanedaStoikov;

        // Usando el trait async explícitamente
        let (bid, ask) =
            <DefaultAvellanedaStoikov as AsyncAvellanedaStoikov>::calculate_optimal_quotes(
                &strategy,
                dec!(100.0),
                dec!(0.0),
                dec!(0.1),
                dec!(0.2),
                3600000,
                dec!(1.5),
            )
            .await
            .unwrap();

        assert!(bid < ask);
        assert!(bid < dec!(100.0));
        assert!(ask > dec!(100.0));
    }
}