mylittleindicators 0.1.8

Multi-stream financial indicators library — 556 bar indicators + 21 event primitives across 35 categories. Consumes 27 stream kinds from digdigdig3 exchange connectors: OHLCV bars, ticks, orderbook (snapshot/delta/L3), funding/predicted funding/funding settlement, mark price, index price, open interest, liquidations, ticker, agg trades, long/short ratio, option greeks, volatility index, historical volatility, basis (derived), composite index, settlement events, block trades, insurance fund, risk limit, market warning, and three kline-family variants. Live-verified on 12 exchanges (89% pass-rate on a 150s BTC slice).
Documentation
pub mod position_catalog;

pub mod avwap_distance;
pub mod dayofmonth_weekofquarter_effect;
pub mod distance_to_levels;
pub mod month_quarter_effect;
pub mod relative_trend_position;
pub mod session_effect;
pub mod weekday_effect;
// New seasonality indicators
pub mod central_pivot_range;
pub mod day_of_week_in_month;
pub mod holiday_weekend_proximity;
pub mod hour_of_day_effect;
pub mod month_turn_effect;
pub mod quarter_turn_effect;
pub mod start_end_of_month_flags;
pub mod start_end_of_quarter_flags;
pub mod start_end_of_week_flags;
pub mod vwap_distance;
pub mod week_in_month_effect;

pub use avwap_distance::*;
pub use central_pivot_range::*;
pub use day_of_week_in_month::*;
pub use dayofmonth_weekofquarter_effect::*;
pub use distance_to_levels::*;
pub use holiday_weekend_proximity::*;
pub use hour_of_day_effect::*;
pub use month_quarter_effect::*;
pub use month_turn_effect::*;
pub use quarter_turn_effect::*;
pub use relative_trend_position::*;
pub use session_effect::*;
pub use start_end_of_month_flags::*;
pub use start_end_of_quarter_flags::*;
pub use start_end_of_week_flags::*;
pub use vwap_distance::*;
pub use week_in_month_effect::*;
pub use weekday_effect::*;