refactor for modularity

This commit is contained in:
Ajasra
2025-05-23 20:37:14 +08:00
parent c743e81af8
commit b71faa9758
11 changed files with 1667 additions and 414 deletions

View File

@@ -0,0 +1,13 @@
"""
This module contains the analysis classes for the cycles project.
"""
from .boillinger_band import BollingerBands
from .rsi import RSI
from .bb_rsi import BollingerBandsStrategy
__all__ = ["BollingerBands", "RSI", "BollingerBandsStrategy"]
__version__ = "0.1.0"
__author__ = 'TCP Cycles Team'