13 lines
301 B
Python
13 lines
301 B
Python
"""
|
|
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' |