Metadata-Version: 2.4
Name: rangebar
Version: 13.0.0
Summary: Renamed to opendeviationbar. This package redirects imports automatically.
Project-URL: Homepage, https://github.com/terrylica/opendeviationbar-py
Project-URL: Repository, https://github.com/terrylica/opendeviationbar-py
Author: Terry Li
License-Expression: MIT
Keywords: financial-data,market-microstructure,open-deviation-bars
Classifier: Development Status :: 7 - Inactive
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.10
Requires-Dist: opendeviationbar>=12.39.0
Description-Content-Type: text/markdown

# rangebar → opendeviationbar

**This package has been renamed to [`opendeviationbar`](https://pypi.org/project/opendeviationbar/).**

The algorithm uses open-anchored deviation thresholds (not classic Nicolellis range bars), so the name was updated to reflect this.

## Migration

```bash
pip install opendeviationbar
pip uninstall rangebar
```

Update your imports:

```python
# Before
from rangebar import get_range_bars

# After
from opendeviationbar import get_open_deviation_bars
```

## Compatibility

This shim package depends on `opendeviationbar` and re-exports all symbols. Existing `import rangebar` code will continue to work with a deprecation warning.
