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