use nautilus_model::enums::PriceType;
use pyo3::prelude::*;
use crate::{indicator::Indicator, ratio::efficiency_ratio::EfficiencyRatio};
#[pymethods]
impl EfficiencyRatio {
#[new]
#[pyo3(signature = (period, price_type=None))]
fn py_new(period: usize, price_type: Option<PriceType>) -> Self {
Self::new(period, price_type)
}
fn __repr__(&self) -> String {
format!("EfficiencyRatio({})", 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 = "value")]
const fn py_value(&self) -> f64 {
self.value
}
#[getter]
#[pyo3(name = "initialized")]
const fn py_initialized(&self) -> bool {
self.initialized
}
#[pyo3(name = "has_inputs")]
fn py_has_inputs(&self) -> bool {
self.has_inputs()
}
#[pyo3(name = "update_raw")]
fn py_update_raw(&mut self, value: f64) {
self.update_raw(value);
}
}