Metadata-Version: 2.4
Name: antony-indicator
Version: 0.2.0
Summary: A custom indicator package including VPFR.
Home-page: https://github.com/yourusername/antony-indicator
Author: Antony
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: numpy
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Antony Indicator Package

A custom Python package for technical analysis indicators.

## Installation

```bash
pip install .
```

## Usage

### VPFR (Volume Profile Fixed Range)

```python
import pandas as pd
from indicator.vpfr import vpfr

# ... create dataframe ...
result = vpfr(df)
print(result.poc, result.vah, result.val)
```

### VWAP (Volume Weighted Average Price)

```python
from indicator.vwap import vwap

# Standard VWAP
result = vwap(df)
print(result.vwap)

# Session-based VWAP (reset on column)
result_session = vwap(df, reset=True, reset_col='session_id')
```
