# -*- coding: utf-8 -*-
from .alligator import alligator
from .alma import alma
from .dema import dema
from .ema import ema
from .fwma import fwma
from .hilo import hilo
from .hl2 import hl2
from .hlc3 import hlc3
from .hma import hma
from .hwma import hwma
from .ichimoku import ichimoku
from .jma import jma
from .kama import kama
from .linreg import linreg
from .mama import mama
from .mcgd import mcgd
from .midpoint import midpoint
from .midprice import midprice
from .ohlc4 import ohlc4
from .pivots import pivots
from .pwma import pwma
from .rma import rma
from .sinwma import sinwma
from .sma import sma
from .smma import smma
from .ssf import ssf
from .ssf3 import ssf3
from .supertrend import supertrend
from .swma import swma
from .t3 import t3
from .tema import tema
from .trima import trima
from .vidya import vidya
from .wcp import wcp
from .wma import wma
from .zlma import zlma


__all__ = [
    "alligator",
    "alma",
    "dema",
    "ema",
    "fwma",
    "hilo",
    "hl2",
    "hlc3",
    "hma",
    "hwma",
    "ichimoku",
    "jma",
    "kama",
    "linreg",
    "mama",
    "mcgd",
    "midpoint",
    "midprice",
    "ohlc4",
    "pivots",
    "pwma",
    "rma",
    "sinwma",
    "sma",
    "smma",
    "ssf",
    "ssf3",
    "supertrend",
    "swma",
    "t3",
    "tema",
    "trima",
    "vidya",
    "wcp",
    "wma",
    "zlma",
]
