use crate::validation; use numpy::{IntoPyArray, PyArray1, PyReadonlyArray1}; use pyo3::prelude::*; /// Typical Price: (high + low + close) / 3. #[pyfunction] pub fn typprice<'py>( py: Python<'py>, high: PyReadonlyArray1<'py, f64>, low: PyReadonlyArray1<'py, f64>, close: PyReadonlyArray1<'py, f64>, ) -> PyResult>> { let highs = high.as_slice()?; let lows = low.as_slice()?; let closes = close.as_slice()?; let n = highs.len(); validation::validate_equal_length(&[ (n, "high"), (lows.len(), "low"), (closes.len(), "close"), ])?; let result = ferro_ta_core::price_transform::typprice(highs, lows, closes); Ok(result.into_pyarray(py)) }