//! Tick-advanced indicators — higher-level order-flow analytics on the trade stream.
//!
//! All indicators here implement [`TickConsumer`] and process raw ticks one by one.
//!
//! Indicators:
//! - [`VwapDeviation`] — rolling VWAP + price deviation %.
//! - [`TradeRunDetector`] — consecutive same-side tick run length.
//! - [`SizeWeightedDirectionalMomentum`] — volume-weighted directional bias [-1, 1].
//! - [`TickFrequencyAnomaly`] — tick-rate burst/quiet ratio.
//! - [`AggressorBurstDetector`] — one-sided burst signal (+1 / -1 / 0).
//! - [`LargeTickMomentum`] — directional momentum of large ticks only.
//! - [`ValueAreaTracker`] — rolling Volume Profile POC / VAH / VAL.
//! - [`VolumeImbalanceZone`] — buy/sell imbalance zone detector.
pub use VwapDeviation;
pub use TradeRunDetector;
pub use SizeWeightedDirectionalMomentum;
pub use TickFrequencyAnomaly;
pub use AggressorBurstDetector;
pub use LargeTickMomentum;
pub use TpoSessionBalance;
pub use ValueAreaTracker;
pub use VolumeImbalanceZone;