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


Python talib.APO屬性代碼示例

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


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

示例1: apo

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import APO [as 別名]
def apo(candles: np.ndarray, fastperiod=12, slowperiod=26, matype=0, source_type="close", sequential=False) -> Union[
    float, np.ndarray]:
    """
    APO - Absolute Price Oscillator

    :param candles: np.ndarray
    :param fastperiod: int - default: 12
    :param slowperiod: int - default: 26
    :param matype: int - default: 0
    :param source_type: str - default: "close"
    :param sequential: bool - default=False

    :return: float | np.ndarray
    """
    if not sequential and len(candles) > 240:
        candles = candles[-240:]

    source = get_candle_source(candles, source_type=source_type)

    res = talib.APO(source, fastperiod=fastperiod, slowperiod=slowperiod, matype=matype)

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

示例2: add_APO

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import APO [as 別名]
def add_APO(self, fastperiod=12, slowperiod=26, matype=0,
            type='line', color='secondary', **kwargs):
    """Absolute Price Oscillator."""

    if not self.has_close:
        raise Exception()

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

    name = 'APO({}, {})'.format(str(fastperiod), str(slowperiod))
    self.sec[name] = dict(type=type, color=color)
    self.ind[name] = talib.APO(self.df[self.cl].values,
                               fastperiod, slowperiod, matype) 
開發者ID:plotly,項目名稱:dash-technical-charting,代碼行數:17,代碼來源:ta.py

示例3: APO

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import APO [as 別名]
def APO(series, fast=12, slow=26, matype=0):
    """double exponential moving average"""
    return _series_to_series(series, talib.APO, fast, slow, matype) 
開發者ID:bpsmith,項目名稱:tia,代碼行數:5,代碼來源:talib_wrapper.py

示例4: test_apo

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import APO [as 別名]
def test_apo(self):
        result = pandas_ta.apo(self.close)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'APO_12_26')

        try:
            expected = tal.APO(self.close)
            pdt.assert_series_equal(result, expected, check_names=False)
        except AssertionError as ae:
            try:
                corr = pandas_ta.utils.df_error_analysis(result, expected, col=CORRELATION)
                self.assertGreater(corr, CORRELATION_THRESHOLD)
            except Exception as ex:
                error_analysis(result, CORRELATION, ex) 
開發者ID:twopirllc,項目名稱:pandas-ta,代碼行數:16,代碼來源:test_indicator_momentum.py

示例5: APO

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


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