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


Python talib.WILLR属性代码示例

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


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

示例1: willr

# 需要导入模块: import talib [as 别名]
# 或者: from talib import WILLR [as 别名]
def willr(candles: np.ndarray, period=14, sequential=False) -> Union[float, np.ndarray]:
    """
    WILLR - Williams' %R

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

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

    res = talib.WILLR(candles[:, 3], candles[:, 4], candles[:, 2], timeperiod=period)

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

示例2: add_WILLR

# 需要导入模块: import talib [as 别名]
# 或者: from talib import WILLR [as 别名]
def add_WILLR(self, timeperiod=14,
              type='line', color='secondary', **kwargs):
    """Williams %R."""

    if not (self.has_high and self.has_low and self.has_close):
        raise Exception()

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

    name = 'WILLR({})'.format(str(timeperiod))
    self.sec[name] = dict(type=type, color=color)
    self.ind[name] = talib.WILLR(self.df[self.hi].values,
                                 self.df[self.lo].values,
                                 self.df[self.cl].values,
                                 timeperiod) 
开发者ID:plotly,项目名称:dash-technical-charting,代码行数:19,代码来源:ta.py

示例3: WILLR

# 需要导入模块: import talib [as 别名]
# 或者: from talib import WILLR [as 别名]
def WILLR(frame, n=14, high_col='high', low_col='low', close_col='close'):
    return _frame_to_series(frame, [high_col, low_col, close_col], talib.WILLR, n) 
开发者ID:bpsmith,项目名称:tia,代码行数:4,代码来源:talib_wrapper.py

示例4: test_willr

# 需要导入模块: import talib [as 别名]
# 或者: from talib import WILLR [as 别名]
def test_willr(self):
        result = pandas_ta.willr(self.high, self.low, self.close)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'WILLR_14')

        try:
            expected = tal.WILLR(self.high, self.low, 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: WILLR

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


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


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