Batch (Series)
Convert full bar collections to indicators, best for once-and-done bulk conversions.
Learn more
The library provides three distinct indicator styles to support different use cases.
| Feature | Batch (Series) | Buffer lists | Stream hubs |
|---|---|---|---|
| Incrementing | no | yes | yes |
| Batch speed | fastest | faster | fast |
| Scaling | low | moderate | high |
| Class type | static | instance | instance |
| Base interface | IReadOnlyList | IReadOnlyList (+ Add) | IStreamHub |
| Complexity | lowest | moderate | highest |
| Chainable | yes | manual | yes |
| Pruning | with utility | auto-preset | auto-preset |
| Healing | no | no | yes |
Healing: Built-in handling of out-of-order and de-deplication of incoming data.
Start with Batch (Series) style unless you have a specific need for incremental processing or real-time streaming.
See Getting started for installation, first steps, and example usage.