Metadata-Version: 2.3
Name: brokrest
Version: 0.0.0
Summary: Brokers can rest now.
License: GPL
Author: RenChu Wang
Author-email: patrick1031wang@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: freqtrade (>=2025.3,<2026.0)
Requires-Dist: numpy
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: scipy (>=1.15.2,<2.0.0)
Requires-Dist: sympy (>=1.12.0)
Requires-Dist: torch (>=2.6.0,<3.0.0)
Description-Content-Type: text/markdown

# Brokrest

Brokers can rest now.

## Development

### Cloning

First, clone the project

```bash
git clone https://github.com/rentrueawng/brokrest --recurse-submodules

# Go into the project root.
cd brokrest
```

### Installation

First, install TA-Lib
```bash
# Get the TA-Lib library
git clone https://github.com/TA-Lib/ta-lib
cd ta-lib

# Install the library.
sudo ./install
```

You might need to enter your password.

Then, install the build tool poetry

```bash
pipx install poetry

# Or using pip
pip install poetry
```

Then, install the packages from PyPI, in editable mode.
```bash
# Go back to `brokrest`.
cd ../

poetry install
```

