nautilus_indicators/python/momentum/
obv.rs1use nautilus_model::data::Bar;
17use pyo3::prelude::*;
18
19use crate::{indicator::Indicator, momentum::obv::OnBalanceVolume};
20
21#[pymethods]
22impl OnBalanceVolume {
23 #[new]
24 #[must_use]
25 pub fn py_new(period: usize) -> Self {
26 Self::new(period)
27 }
28
29 fn __repr__(&self) -> String {
30 format!("OnBalanceVolume({})", self.period)
31 }
32
33 #[getter]
34 #[pyo3(name = "name")]
35 fn py_name(&self) -> String {
36 self.name()
37 }
38
39 #[getter]
40 #[pyo3(name = "period")]
41 const fn py_period(&self) -> usize {
42 self.period
43 }
44
45 #[getter]
46 #[pyo3(name = "has_inputs")]
47 fn py_has_inputs(&self) -> bool {
48 self.has_inputs()
49 }
50
51 #[getter]
52 #[pyo3(name = "value")]
53 const fn py_value(&self) -> f64 {
54 self.value
55 }
56
57 #[getter]
58 #[pyo3(name = "initialized")]
59 const fn py_initialized(&self) -> bool {
60 self.initialized
61 }
62
63 #[pyo3(name = "update_raw")]
64 fn py_update_raw(&mut self, open: f64, close: f64, volume: f64) {
65 self.update_raw(open, close, volume);
66 }
67
68 #[pyo3(name = "handle_bar")]
69 fn py_handle_bar(&mut self, bar: &Bar) {
70 self.handle_bar(bar);
71 }
72
73 #[pyo3(name = "reset")]
74 fn py_reset(&mut self) {
75 self.reset();
76 }
77}