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
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::*;