mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-08-06 13:20:12 +08:00
HWMA + HWC (Moving Average + Channel) The HWC includes two optional dataframe outputs by setting 'channel_eval=True'. Maybe some changes need to be applied for output naming conventions.
16 lines
384 B
Python
16 lines
384 B
Python
# -*- coding: utf-8 -*-
|
|
from .aberration import aberration
|
|
from .accbands import accbands
|
|
from .atr import atr
|
|
from .bbands import bbands
|
|
from .donchian import donchian
|
|
from .hwc import hwc
|
|
from .kc import kc
|
|
from .massi import massi
|
|
from .pdist import pdist
|
|
from .natr import natr
|
|
from .rvi import rvi
|
|
from .thermo import thermo
|
|
from .true_range import true_range
|
|
from .ui import ui
|