"""Technical indicator algorithms."""
from app.engine.technical.sma import SMAAlgorithm
from app.engine.technical.ema import EMAAlgorithm
from app.engine.technical.rsi import RSIAlgorithm
from app.engine.technical.atr import ATRAlgorithm
from app.engine.technical.bollinger import BollingerBandsAlgorithm
from app.engine.technical.vwap import VWAPAlgorithm
from app.engine.technical.ichimoku import IchimokuAlgorithm
from app.engine.technical.support_resistance import SupportResistanceAlgorithm

ALL_TECHNICAL = [
    SMAAlgorithm,
    EMAAlgorithm,
    RSIAlgorithm,
    ATRAlgorithm,
    BollingerBandsAlgorithm,
    VWAPAlgorithm,
    IchimokuAlgorithm,
    SupportResistanceAlgorithm,
]
