Python talib.BOP Examples

The following are 7 code examples of talib.BOP(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module talib , or try the search function .
Example #1
Source File: ta.py    From dash-technical-charting with MIT License 6 votes vote down vote up
def add_BOP(self,
            type='histogram', color='tertiary', **kwargs):
    """Balance of Power."""

    if not self.has_OHLC:
        raise Exception()

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

    name = 'BOP'
    self.sec[name] = dict(type=type, color=color)
    self.ind[name] = talib.BOP(self.df[self.op].values,
                               self.df[self.hi].values,
                               self.df[self.lo].values,
                               self.df[self.cl].values) 
Example #2
Source File: bop.py    From jesse with MIT License 6 votes vote down vote up
def bop(candles: np.ndarray, sequential=False) -> Union[float, np.ndarray]:
    """
    BOP - Balance Of Power

    :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.BOP(candles[:, 1], candles[:, 3], candles[:, 4], candles[:, 2])

    if sequential:
        return res
    else:
        return None if np.isnan(res[-1]) else res[-1] 
Example #3
Source File: talib_indicators.py    From QUANTAXIS with MIT License 5 votes vote down vote up
def BOP(DataFrame):
    res = talib.BOP(DataFrame.open.values, DataFrame.high.values,
                    DataFrame.low.values, DataFrame.close.values)
    return pd.DataFrame({'BOP': res}, index=DataFrame.index) 
Example #4
Source File: ta_indicator_mixin.py    From strategy with Apache License 2.0 5 votes vote down vote up
def bop(self, sym, frequency):
        if not self.kbars_ready(sym, frequency):
            return []

        opens = self.open(sym, frequency)
        highs = self.high(sym, frequency)
        lows = self.low(sym, frequency)
        closes = self.close(sym, frequency)

        bop = ta.BOP(opens, highs, lows, closes)

        return bop 
Example #5
Source File: talib_wrapper.py    From tia with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def BOP(frame, open_col='open', high_col='high', low_col='low', close_col='close'):
    return _frame_to_series(frame, [open_col, high_col, low_col, close_col], talib.BOP) 
Example #6
Source File: test_indicator_momentum.py    From pandas-ta with MIT License 5 votes vote down vote up
def test_bop(self):
        result = pandas_ta.bop(self.open, self.high, self.low, self.close)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'BOP')

        try:
            expected = tal.BOP(self.open, 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) 
Example #7
Source File: talib_indicators.py    From qtpylib with Apache License 2.0 5 votes vote down vote up
def BOP(data, **kwargs):
    _check_talib_presence()
    popen, phigh, plow, pclose, _ = _extract_ohlc(data)
    return talib.BOP(popen, phigh, plow, pclose, **kwargs)