use crate::error::FinError;
use crate::signals::{BarInput, Signal, SignalValue};
use rust_decimal::Decimal;
pub struct GapDetector {
name: String,
prev_close: Option<Decimal>,
last_gap: Option<Decimal>,
}
impl GapDetector {
pub fn new(name: impl Into<String>) -> Result<Self, FinError> {
Ok(Self { name: name.into(), prev_close: None, last_gap: None })
}
pub fn last_gap(&self) -> Option<Decimal> { self.last_gap }
}
impl Signal for GapDetector {
fn name(&self) -> &str { &self.name }
fn update(&mut self, bar: &BarInput) -> Result<SignalValue, FinError> {
let gap = match self.prev_close {
None => {
self.prev_close = Some(bar.close);
return Ok(SignalValue::Unavailable);
}
Some(pc) => {
if pc.is_zero() {
self.prev_close = Some(bar.close);
return Ok(SignalValue::Unavailable);
}
(bar.open - pc) / pc * Decimal::from(100u32)
}
};
self.prev_close = Some(bar.close);
self.last_gap = Some(gap);
Ok(SignalValue::Scalar(gap))
}
fn is_ready(&self) -> bool { self.last_gap.is_some() }
fn period(&self) -> usize { 1 }
fn reset(&mut self) {
self.prev_close = None;
self.last_gap = None;
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::ohlcv::OhlcvBar;
use crate::types::{NanoTimestamp, Price, Quantity, Symbol};
use rust_decimal_macros::dec;
fn bar_oc(o: &str, c: &str) -> OhlcvBar {
let op = Price::new(o.parse().unwrap()).unwrap();
let cp = Price::new(c.parse().unwrap()).unwrap();
OhlcvBar {
symbol: Symbol::new("X").unwrap(),
open: op, high: op, low: op, close: cp,
volume: Quantity::zero(),
ts_open: NanoTimestamp::new(0),
ts_close: NanoTimestamp::new(1),
tick_count: 1,
}
}
#[test]
fn test_gap_unavailable_first_bar() {
let mut g = GapDetector::new("g").unwrap();
assert_eq!(
g.update_bar(&bar_oc("100", "100")).unwrap(),
SignalValue::Unavailable
);
}
#[test]
fn test_gap_up() {
let mut g = GapDetector::new("g").unwrap();
g.update_bar(&bar_oc("100", "100")).unwrap(); if let SignalValue::Scalar(v) = g.update_bar(&bar_oc("105", "105")).unwrap() {
assert_eq!(v, dec!(5));
} else { panic!("expected Scalar"); }
}
#[test]
fn test_gap_down() {
let mut g = GapDetector::new("g").unwrap();
g.update_bar(&bar_oc("100", "100")).unwrap();
if let SignalValue::Scalar(v) = g.update_bar(&bar_oc("90", "90")).unwrap() {
assert_eq!(v, dec!(-10));
} else { panic!("expected Scalar"); }
}
#[test]
fn test_gap_no_gap() {
let mut g = GapDetector::new("g").unwrap();
g.update_bar(&bar_oc("100", "100")).unwrap();
if let SignalValue::Scalar(v) = g.update_bar(&bar_oc("100", "100")).unwrap() {
assert_eq!(v, dec!(0));
} else { panic!("expected Scalar"); }
}
#[test]
fn test_gap_reset() {
let mut g = GapDetector::new("g").unwrap();
g.update_bar(&bar_oc("100", "100")).unwrap();
g.update_bar(&bar_oc("105", "105")).unwrap();
assert!(g.is_ready());
g.reset();
assert!(!g.is_ready());
assert!(g.last_gap().is_none());
}
}