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
use crate::types::QuoteCurrency;

/// Decribes the possible updates to the market state
#[derive(Debug, Clone, PartialEq)]
pub enum MarketUpdate {
    /// An update to the best bid and ask has occured
    Bba {
        /// The new best bid
        bid: QuoteCurrency,
        /// The new best ask
        ask: QuoteCurrency,
    },
    /// A new candle has been created
    Candle {
        /// The best bid at the time of candle creation
        bid: QuoteCurrency,
        /// The best ask at the time of candle creation
        ask: QuoteCurrency,
        /// The low price of the candle
        low: QuoteCurrency,
        /// The high price of the candle
        high: QuoteCurrency,
    },
}

/// Creates the MarketUpdate::Bba variant
#[macro_export]
macro_rules! bba {
    ( $b:expr, $a:expr ) => {{
        MarketUpdate::Bba {
            bid: $b,
            ask: $a,
        }
    }};
}

/// Creates the MarketUpdate::Candle variant
#[macro_export]
macro_rules! candle {
    ( $b:expr, $a:expr, $l:expr, $h:expr ) => {{
        MarketUpdate::Candle {
            bid: $b,
            ask: $a,
            low: $l,
            high: $h,
        }
    }};
}

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

    #[test]
    fn bba_macro() {
        let m = bba!(quote!(100.0), quote!(100.1));

        assert_eq!(
            m,
            MarketUpdate::Bba {
                bid: quote!(100.0),
                ask: quote!(100.1)
            }
        );
    }

    #[test]
    fn candle_macro() {
        let c = candle!(quote!(100.0), quote!(100.1), quote!(100.0), quote!(100.1));

        assert_eq!(
            c,
            MarketUpdate::Candle {
                bid: quote!(100.0),
                ask: quote!(100.1),
                low: quote!(100.0),
                high: quote!(100.1),
            }
        )
    }
}