opendeviationbar-core 13.82.0

Core open deviation bar construction algorithm with temporal integrity guarantees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Project-wide structural and mathematical constants.
//!
//! This module is the single source of truth for compile-time parameters that are
//! shared across multiple features:
//! - [`entropy`]: Bandt–Pompe ordinal-pattern embedding (m=3, τ=1) and permutation
//!   entropy normalization constant (ln(3!) = ln(6))
//! - [`math`]: Mathematical constants for volatility and entropy-based optimizations
//!   (Garman-Klass coefficient, Hurst entropy-skip threshold)
//!
//! See `docs/adr/2026-06-03-bandt-pompe-embedding-constant.md`.

pub mod entropy;
pub mod math;