本文整理汇总了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]
示例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]
示例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
示例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)
示例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
# ---------------------------------------------