opendeviationbar-streaming 13.58.2

Real-time streaming engine for open deviation bar processing
Documentation
# opendeviationbar-streaming

Real-time streaming engine for open deviation bar construction over Binance WebSocket feeds, with bounded memory, circuit breaker pattern, and checkpoint recovery.

[![crates.io](https://img.shields.io/crates/v/opendeviationbar-streaming.svg)](https://crates.io/crates/opendeviationbar-streaming)
[![docs.rs](https://docs.rs/opendeviationbar-streaming/badge.svg)](https://docs.rs/opendeviationbar-streaming)

## Installation

### From crates.io

```toml
[dependencies]
opendeviationbar-streaming = "12"
```

### From git (latest)

```toml
[dependencies]
opendeviationbar-streaming = { git = "https://github.com/terrylica/opendeviationbar-py", path = "crates/opendeviationbar-streaming" }
```

### With Binance WebSocket integration

```toml
[dependencies]
opendeviationbar-streaming = { version = "12", features = ["binance-integration"] }
```

## Quick Start

### Stream Processing

```rust
use opendeviationbar_streaming::StreamingProcessor;
use futures::stream::StreamExt;

// Create processor: 250 dbps = 0.25% threshold
let mut processor = StreamingProcessor::new(250)?;

// Process an async trade stream
let metrics = processor.process_stream(agg_trade_stream).await?;

println!("Processed {} trades → {} bars", metrics.trades_processed, metrics.bars_generated);
```

### Live Bar Engine (multiplexed WebSocket)

```rust
use opendeviationbar_streaming::LiveBarEngine;

// Process multiple symbols × thresholds concurrently
let engine = LiveBarEngine::new(
    vec!["BTCUSDT".into(), "ETHUSDT".into()],
    vec![250, 500],
    true, // include microstructure features
);

engine.start();

loop {
    if let Some(bar) = engine.next_bar(timeout_ms: 5000) {
        let symbol = bar.get("_symbol");
        let threshold = bar.get("_threshold");
        println!("{symbol}@{threshold}: close={}", bar.get("close"));
    }
}
```

### Custom Configuration

```rust
use opendeviationbar_streaming::{StreamingProcessor, StreamingProcessorConfig};

let config = StreamingProcessorConfig {
    max_buffer_size: 50_000,
    circuit_breaker_threshold: 100,
    metrics_interval_secs: 60,
    ..Default::default()
};

let mut processor = StreamingProcessor::with_config(250, config)?;
```

## Features

| Feature               | Default | Description                                  |
| --------------------- | ------- | -------------------------------------------- |
| `binance-integration` | No      | Binance WebSocket stream support             |
| `stats`               | No      | Rolling statistics (rolling-stats, tdigests) |
| `indicators`          | No      | Technical indicators                         |
| `all`                 | No      | Enable all features                          |

## Architecture

```
Binance WS → LiveBarEngine (tokio, multiplexed)
                    ├─ OpenDeviationBarProcessor (per symbol × threshold)
                    │  └─ process_single_trade() → Option<CompletedBar>
                    └─ next_bar() → completed bars to consumer
```

- **Bounded memory**: Configurable buffer size prevents exhaustion
- **Circuit breaker**: Fault tolerance with automatic error threshold detection
- **Graceful shutdown**: `engine.stop()` + `engine.collect_checkpoints()` for recovery

## MSRV

Minimum supported Rust version: **1.90**

## License

MIT