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


Python talib.PPO屬性代碼示例

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


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

示例1: add_PPO

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

    if not self.has_close:
        raise Exception()

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

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

示例2: ppo

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import PPO [as 別名]
def ppo(candles: np.ndarray, fastperiod=12, slowperiod=26, matype=0, source_type="close", sequential=False) -> Union[
    float, np.ndarray]:
    """
    PPO - Percentage 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.PPO(source, fastperiod=fastperiod, slowperiod=slowperiod, matype=matype)

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

示例3: PPO

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

示例4: test_ppo

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import PPO [as 別名]
def test_ppo(self):
        result = pandas_ta.ppo(self.close)
        self.assertIsInstance(result, DataFrame)
        self.assertEqual(result.name, 'PPO_12_26_9')

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

示例5: PPO

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


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