nautilus_indicators/python/momentum/
bias.rs1use nautilus_model::data::{Bar, QuoteTick, TradeTick};
17use pyo3::prelude::*;
18
19use crate::{average::MovingAverageType, indicator::Indicator, momentum::bias::Bias};
20
21#[pymethods]
22impl Bias {
23 #[new]
24 #[pyo3(signature = (period, ma_type=None))]
25 #[must_use]
26 pub fn py_new(period: usize, ma_type: Option<MovingAverageType>) -> Self {
27 Self::new(period, ma_type)
28 }
29
30 fn __repr__(&self) -> String {
31 format!("Bias({})", self.period)
32 }
33
34 #[getter]
35 #[pyo3(name = "name")]
36 fn py_name(&self) -> String {
37 self.name()
38 }
39
40 #[getter]
41 #[pyo3(name = "period")]
42 const fn py_period(&self) -> usize {
43 self.period
44 }
45
46 #[getter]
47 #[pyo3(name = "has_inputs")]
48 fn py_has_inputs(&self) -> bool {
49 self.has_inputs()
50 }
51
52 #[getter]
53 #[pyo3(name = "count")]
54 const fn py_count(&self) -> usize {
55 self.count
56 }
57
58 #[getter]
59 #[pyo3(name = "value")]
60 const fn py_value(&self) -> f64 {
61 self.value
62 }
63
64 #[getter]
65 #[pyo3(name = "initialized")]
66 const fn py_initialized(&self) -> bool {
67 self.initialized
68 }
69
70 #[pyo3(name = "update_raw")]
71 fn py_update_raw(&mut self, close: f64) {
72 self.update_raw(close);
73 }
74
75 #[pyo3(name = "handle_quote_tick")]
76 const fn py_handle_quote_tick(&mut self, _quote: &QuoteTick) {
77 }
79
80 #[pyo3(name = "handle_trade_tick")]
81 const fn py_handle_trade_tick(&mut self, _trade: &TradeTick) {
82 }
84
85 #[pyo3(name = "handle_bar")]
86 fn py_handle_bar(&mut self, bar: &Bar) {
87 self.handle_bar(bar);
88 }
89
90 #[pyo3(name = "reset")]
91 fn py_reset(&mut self) {
92 self.reset();
93 }
94}