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
use crate::{AggregationRule, By, Error, ModularCandle, Result, TakerTrade};

/// Creates candles every n units of volume traded
#[derive(Debug, Clone)]
pub struct VolumeRule {
    // If true, the cumulative volume needs to be reset
    init: bool,

    // See docs on By enum for details
    by: By,

    // cumulative volume
    cum_vol: f64,

    // The theshold volume the candle needs to have before finishing it
    threshold_vol: f64,
}

impl VolumeRule {
    /// Create a new instance with the given volume threshold
    pub fn new(threshold_vol: f64, by: By) -> Result<Self> {
        if threshold_vol <= 0.0 {
            return Err(Error::InvalidParam);
        }
        Ok(Self {
            init: true,
            by,
            cum_vol: 0.0,
            threshold_vol,
        })
    }
}

impl<C, T> AggregationRule<C, T> for VolumeRule
where
    C: ModularCandle<T>,
    T: TakerTrade,
{
    fn should_trigger(&mut self, trade: &T, _candle: &C) -> bool {
        if self.init {
            self.cum_vol = 0.0;
            self.init = false;
        }
        self.cum_vol += match self.by {
            By::Quote => trade.size().abs(),
            By::Base => trade.size().abs() / trade.price(),
        };

        let should_trigger = self.cum_vol > self.threshold_vol;
        if should_trigger {
            self.init = true;
        }

        should_trigger
    }
}