Metadata-Version: 2.4
Name: stmrtpy
Version: 1.0.3
Summary: Professional stock plotting library with candlestick, volume, MA and RSI
Author-email: Ayaan <zerogravitygamingx211@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/zerogravitygamingx211-hash/stmrtpy
Project-URL: Repository, https://github.com/zerogravitygamingx211-hash/stmrtpy
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib
Requires-Dist: pandas
Requires-Dist: numpy
Dynamic: license-file

# stmrtpy

Professional stock market plotting library.

## Features

- Candlestick chart
- Volume subplot
- Moving averages
- RSI
- Dark mode

## Install

pip install stmrtpy

## Example

```python
import pandas as pd
from stmrtpy import plot_chart

df = pd.read_csv("data.csv")

plot_chart(
    df,
    ma_windows=(20, 50),
    show_rsi=True,
    dark=True,
    save_path="chart.png"
)
