Metadata-Version: 2.3
Name: findicator
Version: 0.1.6
Summary: A modern Python library for financial indicators
License: MIT
Author: Refen
Author-email: abbasi.seyed.alireza@gmail.com
Requires-Python: >=3.9,<3.14
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: pandas (>=2.0,<3.0)
Project-URL: Repository, https://github.com/RefenRefen/findicator
Description-Content-Type: text/markdown

# Findicator

A Python library to calculate financial indicators like moving averages, RSI, Bollinger Bands, and more.

## Installation

```bash
pip install findicator
```

## Usage

```python
from findicator import indicators

# Example: Calculate simple moving average
result = indicators.sma(data, window=20)
```

