MCPcopy Create free account
hub / github.com/Open-Quant/openquant / fracdiff_frac_diff_ffd

Function fracdiff_frac_diff_ffd

crates/pyopenquant/src/fracdiff.rs:19–21  ·  view source on GitHub ↗
(series: Vec<f64>, diff_amt: f64, thresh: f64)

Source from the content-addressed store, hash-verified

17
18#[pyfunction(name = "frac_diff_ffd")]
19fn fracdiff_frac_diff_ffd(series: Vec<f64>, diff_amt: f64, thresh: f64) -> Vec<f64> {
20 openquant::fracdiff::frac_diff_ffd(&series, diff_amt, thresh)
21}
22
23pub fn register(py: Python<'_>, parent: &Bound<'_, PyModule>) -> PyResult<()> {
24 let m = PyModule::new(py, "fracdiff")?;

Callers

nothing calls this directly

Calls 1

frac_diff_ffdFunction · 0.85

Tested by

no test coverage detected