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
14
pub mod rendering;
pub mod rendering_catalog;
pub mod value_adapter;
#[cfg(test)]
mod rendering_tests;

pub use rendering::{
    RenderingMetadata, RenderingMetadataBuilder, OutputSpec, OutputType,
    ReferenceLine, LineStyle, HistogramStyle, ValueExtractor,
    ChannelPart, MacdPart, IchimokuPart, DoublePart, TriplePart,
    CandlePart, AdaptivePart, VolatilityPart, StatTestPart, CandleAnatomyPart,
};
pub use rendering_catalog::{get_rendering, has_rendering, rendering_count};
pub use value_adapter::ValueAdapter;