mylittleindicators 0.1.2

Multi-stream financial indicators library — 559 bar indicators + 21 event primitives across 35 categories. Consumes OHLCV bars, ticks, orderbook (snapshot/delta), funding, mark price, open interest, liquidations, ticker, agg trades, and 12+ extended stream types from digdigdig3 exchange connectors.
Documentation
//! Entropy-based indicators for measuring market predictability and randomness

pub mod shannon_entropy;
pub mod approximate_entropy;
pub mod sample_entropy;
pub mod permutation_entropy;
pub mod conditional_entropy;
pub mod cross_mutual_information_lags;
pub mod fisher_information;
pub mod information_gain;
pub mod js_divergence;
pub mod kl_divergence;
pub mod mutual_information;
pub mod transfer_entropy;
pub mod entropy_catalog;

pub use shannon_entropy::ShannonEntropy;
pub use approximate_entropy::ApproximateEntropy;
pub use sample_entropy::SampleEntropy;
pub use permutation_entropy::PermutationEntropy;