Python talib.PPO Examples
The following are 5
code examples of talib.PPO().
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: ppo.py From jesse with MIT License | 7 votes |
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]
Example #2
Source File: ta.py From dash-technical-charting with MIT License | 6 votes |
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)
Example #3
Source File: talib_wrapper.py From tia with BSD 3-Clause "New" or "Revised" License | 5 votes |
def PPO(series, fast=12, slow=26, matype=0): return _series_to_series(series, talib.PPO, fast, slow, matype)
Example #4
Source File: test_indicator_momentum.py From pandas-ta with MIT License | 5 votes |
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)
Example #5
Source File: talib_indicators.py From qtpylib with Apache License 2.0 | 5 votes |
def PPO(data, **kwargs): _check_talib_presence() prices = _extract_series(data) return talib.PPO(prices, **kwargs)