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
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `core` — все базовые типы крейта.
//!
//! - `types/`  — сырые рыночные данные (Bar, Tick, TimeService, CalendarService, ResearchTimeframe)
//! - `signal/` — runtime taxonomy (SignalKind, Direction, BarConfirmation)
//! - `ast/`    — codegen AST (Event, EventTrigger, OperatorClass, Operand, Window,
//!               CompositionSpec, Guard, RoleKind, validation)
//!
//! Здесь нет runtime (детекторов, engine), нет defaults, нет StrategySpec.
//! Только типы которые нужны и backtest-стратегиям, и chart-детекторам одинаково.

pub mod types;
pub mod signal;
pub mod ast;