"""Quantitative algorithms."""
from app.engine.quantitative.eta_predictor import ETAPredictorAlgorithm
from app.engine.quantitative.coin_multiplier import CoinMultiplierAlgorithm
from app.engine.quantitative.laddering import LadderingAlgorithm
from app.engine.quantitative.prorated_profit import ProratedProfitAlgorithm

ALL_QUANTITATIVE = [
    ETAPredictorAlgorithm,
    CoinMultiplierAlgorithm,
    LadderingAlgorithm,
    ProratedProfitAlgorithm,
]
