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
use crate::{AggregationRule, By, ModularCandle, TakerTrade};
pub struct VolumeRule {
init: bool,
by: By,
cum_vol: f64,
threshold_vol: f64,
}
impl VolumeRule {
pub fn new(threshold_vol: f64, by: By) -> Self {
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
}
}