rangebar-hurst 12.37.0

Hurst Exponent estimator functions for range bar financial analysis
Documentation

Hurst Exponent estimator functions for Rust

Originally based on evrom/hurst (GPL-3.0), forked to MIT for license compatibility. This provides core R/S (Rescaled Range) analysis for Hurst exponent estimation.

License Resolution

Issue #96 Task #149/150: GPL-3.0 license conflict resolution. The external evrom/hurst crate (v0.1.0) was GPL-3.0 licensed, blocking PyPI distribution. This internal fork enables MIT-licensed Hurst calculations without GPL restrictions.

Examples

# use rangebar_hurst::rssimple;
let prices = vec![100.0, 101.0, 99.5, 102.0, 101.5];
let hurst = rssimple(&prices);
assert!(hurst >= 0.0 && hurst <= 1.0);