当前位置: 首页>>代码示例>>Python>>正文


Python talib.OBV属性代码示例

本文整理汇总了Python中talib.OBV属性的典型用法代码示例。如果您正苦于以下问题:Python talib.OBV属性的具体用法?Python talib.OBV怎么用?Python talib.OBV使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在talib的用法示例。


在下文中一共展示了talib.OBV属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: obv

# 需要导入模块: import talib [as 别名]
# 或者: from talib import OBV [as 别名]
def obv(candles: np.ndarray, sequential=False) -> Union[float, np.ndarray]:
    """
    OBV - On Balance Volume

    :param candles: np.ndarray
    :param sequential: bool - default=False

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

    res = talib.OBV(candles[:, 2], candles[:, 5])

    if sequential:
        return res
    else:
        return None if np.isnan(res[-1]) else res[-1] 
开发者ID:jesse-ai,项目名称:jesse,代码行数:20,代码来源:obv.py

示例2: calculate_obv

# 需要导入模块: import talib [as 别名]
# 或者: from talib import OBV [as 别名]
def calculate_obv(self, period_name, closing_prices, volumes):
        obv = talib.OBV(closing_prices, volumes)
        obv_ema = talib.EMA(obv, timeperiod=3)

        self.current_indicators[period_name]['obv_ema'] = obv_ema[-1]
        self.current_indicators[period_name]['obv'] = obv[-1] 
开发者ID:mcardillo55,项目名称:cbpro-trader,代码行数:8,代码来源:IndicatorSubsystem.py

示例3: test_obv

# 需要导入模块: import talib [as 别名]
# 或者: from talib import OBV [as 别名]
def test_obv():
    """test OBC"""

    obv = TA.OBV(ohlc)
    talib_obv = talib.OBV(ohlc["close"], ohlc["volume"])

    #assert obv.values[-1] == talib_obv[-1]
    #assert -149123.0 == -148628.0
    pass  # close enough 
开发者ID:peerchemist,项目名称:finta,代码行数:11,代码来源:test_reg.py

示例4: test_obv

# 需要导入模块: import talib [as 别名]
# 或者: from talib import OBV [as 别名]
def test_obv(self):
        result = pandas_ta.obv(self.close, self.volume_)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'OBV')

        try:
            expected = tal.OBV(self.close, self.volume_)
            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_volume.py

示例5: OBV

# 需要导入模块: import talib [as 别名]
# 或者: from talib import OBV [as 别名]
def OBV(data, **kwargs):
    _check_talib_presence()
    _, _, _, _, pvolume = _extract_ohlc(data)
    return talib.OBV(pvolume, **kwargs)


# ---------------------------------------------
# Cycle Indicators
# --------------------------------------------- 
开发者ID:ranaroussi,项目名称:qtpylib,代码行数:11,代码来源:talib_indicators.py


注:本文中的talib.OBV属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。