當前位置: 首頁>>代碼示例>>Python>>正文


Python talib.MAMA屬性代碼示例

本文整理匯總了Python中talib.MAMA屬性的典型用法代碼示例。如果您正苦於以下問題:Python talib.MAMA屬性的具體用法?Python talib.MAMA怎麽用?Python talib.MAMA使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在talib的用法示例。


在下文中一共展示了talib.MAMA屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: mama

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import MAMA [as 別名]
def mama(candles: np.ndarray, fastlimit=0.5, slowlimit=0.05, source_type="close", sequential=False) -> MAMA:
    """
    MAMA - MESA Adaptive Moving Average

    :param candles: np.ndarray
    :param fastlimit: float - default: 0.5
    :param slowlimit: float - default: 0.05
    :param source_type: str - default: "close"
    :param sequential: bool - default=False

    :return: MAMA(mama, fama)
    """
    if not sequential and len(candles) > 240:
        candles = candles[-240:]

    source = get_candle_source(candles, source_type=source_type)
    mama, fama = talib.MAMA(source, fastlimit=fastlimit, slowlimit=slowlimit)

    if sequential:
        return MAMA(mama, fama)
    else:
        return MAMA(mama[-1], fama[-1]) 
開發者ID:jesse-ai,項目名稱:jesse,代碼行數:24,代碼來源:mama.py

示例2: MAMA

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import MAMA [as 別名]
def MAMA(Series, fastlimit=0.5, slowlimit=0.05):
    mama, fama = talib.MAMA(Series.values, fastlimit, slowlimit)
    return pd.Series(mama, index=Series.index), pd.Series(fama, index=Series.index)


# # MAVP - Moving average with variable period
# real = talib.MAVP(close, periods, minperiod=2, maxperiod=30, matype=0)

# # MIDPOINT - MidPoint over period
# real = talib.MIDPOINT(close, timeperiod=14)

# # MIDPRICE - Midpoint Price over period
# real = talib.MIDPRICE(high, low, timeperiod=14)


# # SAREXT - Parabolic SAR - Extended
# real = SAREXT(high, low, startvalue=0, offsetonreverse=0, accelerationinitlong=0,
#               accelerationlong=0, accelerationmaxlong=0, accelerationinitshort=0, accelerationshort=0, accelerationmaxshort=0)


# # T3 - Triple Exponential Moving Average (T3)
# real = T3(close, timeperiod=5, vfactor=0)

# # TEMA - Triple Exponential Moving Average
# real = TEMA(close, timeperiod=30)

# # TRIMA - Triangular Moving Average
# real = TRIMA(close, timeperiod=30)

# # WMA - Weighted Moving Average
# real = WMA(close, timeperiod=30) 
開發者ID:QUANTAXIS,項目名稱:QUANTAXIS,代碼行數:33,代碼來源:talib_series.py

示例3: add_MAMA

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import MAMA [as 別名]
def add_MAMA(self, fastlimit=0.5, slowlimit=0.05,
             types=['line', 'line'], colors=['secondary', 'tertiary'],
             **kwargs):
    """MESA Adaptive Moving Average.

    Note that the first argument of types and colors refers to MAMA while the
    second argument refers to FAMA.

    """
    if not self.has_close:
        raise Exception()

    utils.kwargs_check(kwargs, VALID_TA_KWARGS)
    if 'kind' in kwargs:
        kwargs['type'] = kwargs['kind']
    if 'kinds' in kwargs:
        types = kwargs['type']

    if 'type' in kwargs:
        types = [kwargs['type']] * 2
    if 'color' in kwargs:
        colors = [kwargs['color']] * 2

    mama = 'MAMA({},{})'.format(str(fastlimit), str(slowlimit))
    fama = 'FAMA({},{})'.format(str(fastlimit), str(slowlimit))
    self.pri[mama] = dict(type=types[0], color=colors[0])
    self.pri[fama] = dict(type=types[1], color=colors[1])
    self.ind[mama], self.ind[fama] = talib.MAMA(self.df[self.cl].values,
                                                fastlimit, slowlimit) 
開發者ID:plotly,項目名稱:dash-technical-charting,代碼行數:31,代碼來源:ta.py

示例4: MAMA

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import MAMA [as 別名]
def MAMA(series, fast=.5, slow=.05):
    """MESA Adaptive Moving Average"""
    return _series_to_frame(series, ['MAMA', 'FAMA'], talib.MAMA, fast, slow) 
開發者ID:bpsmith,項目名稱:tia,代碼行數:5,代碼來源:talib_wrapper.py

示例5: MAMA

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import MAMA [as 別名]
def MAMA(data, **kwargs):
    _check_talib_presence()
    prices = _extract_series(data)
    return talib.MAMA(prices, **kwargs) 
開發者ID:ranaroussi,項目名稱:qtpylib,代碼行數:6,代碼來源:talib_indicators.py


注:本文中的talib.MAMA屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。