Metadata-Version: 2.4
Name: BackcastPro
Version: 0.1.2
Summary: トレーディング戦略のためのPythonバックテストライブラリ
Author: botterYosuke
Project-URL: Homepage, https://github.com/botterYosuke/BackcastPro/
Project-URL: Issues, https://github.com/botterYosuke/BackcastPro/issues
Project-URL: Logo, https://raw.githubusercontent.com/botterYosuke/BackcastPro/main/docs/img/logo.drawio.svg
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.23
Requires-Dist: pandas>=1.5
Requires-Dist: tqdm>=4.64

# <img src="https://raw.githubusercontent.com/botterYosuke/BackcastPro/main/docs/img/logo.drawio.svg" alt="BackcastPro Logo" width="40" height="24"> BackcastPro

トレーディング戦略のためのPythonバックテストライブラリ。

## インストール（Windows）

### PyPIから（エンドユーザー向け）

```powershell
python -m pip install BackcastPro
```

### 開発用インストール

開発用に、リポジトリをクローンして開発モードでインストールします。

```powershell
git clone <repository-url>
cd BackcastPro
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e .
python -m pip install -r requirements.txt
```

**開発モードインストール（python -m pip install -e .）**
- プロジェクトを開発モードでインストールします
- `src` ディレクトリが自動的に Python パスに追加されます

## 使用方法

```python
from BackcastPro import Strategy, Backtest

# ここにトレーディング戦略の実装を記述
```

## ドキュメント

- [ドキュメント一覧](https://github.com/botterYosuke/BackcastPro/blob/main/docs/index.md)

## バグ報告 / サポート

- バグ報告や要望は GitHub Issues へ
- 質問は Discord コミュニティへ（[招待リンク](https://discord.gg/fzJTbpzE)）
- 使い方はドキュメントをご参照ください

