use nautilus_model::data::Bar;
use pyo3::prelude::*;
use crate::{indicator::Indicator, momentum::obv::OnBalanceVolume};
#[pymethods]
#[pyo3_stub_gen::derive::gen_stub_pymethods]
impl OnBalanceVolume {
#[new]
#[must_use]
pub fn py_new(period: usize) -> Self {
Self::new(period)
}
fn __repr__(&self) -> String {
format!("OnBalanceVolume({})", self.period)
}
#[getter]
#[pyo3(name = "name")]
fn py_name(&self) -> String {
self.name()
}
#[getter]
#[pyo3(name = "period")]
const fn py_period(&self) -> usize {
self.period
}
#[getter]
#[pyo3(name = "has_inputs")]
fn py_has_inputs(&self) -> bool {
self.has_inputs()
}
#[getter]
#[pyo3(name = "value")]
const fn py_value(&self) -> f64 {
self.value
}
#[getter]
#[pyo3(name = "initialized")]
const fn py_initialized(&self) -> bool {
self.initialized
}
#[pyo3(name = "update_raw")]
fn py_update_raw(&mut self, open: f64, close: f64, volume: f64) {
self.update_raw(open, close, volume);
}
#[pyo3(name = "handle_bar")]
fn py_handle_bar(&mut self, bar: &Bar) {
self.handle_bar(bar);
}
#[pyo3(name = "reset")]
fn py_reset(&mut self) {
self.reset();
}
}