Python talib.TRIMA Examples

The following are 6 code examples of talib.TRIMA(). 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: trima.py    From jesse with MIT License 6 votes vote down vote up
def trima(candles: np.ndarray, period=30, source_type="close", sequential=False) -> Union[float, np.ndarray]:
    """
    TRIMA - Triangular Moving Average

    :param candles: np.ndarray
    :param period: int - default: 30
    :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.TRIMA(source, timeperiod=period)

    return res if sequential else res[-1] 
Example #2
Source File: ta.py    From dash-technical-charting with MIT License 5 votes vote down vote up
def add_TRIMA(self, timeperiod=20,
              type='line', color='secondary', **kwargs):
    """Triangular Moving Average."""

    if not self.has_close:
        raise Exception()

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

    name = 'TRIMA({})'.format(str(timeperiod))
    self.pri[name] = dict(type=type, color=color)
    self.ind[name] = talib.TRIMA(self.df[self.cl].values,
                                 timeperiod) 
Example #3
Source File: test_reg.py    From finta with GNU Lesser General Public License v3.0 5 votes vote down vote up
def test_trima():
    '''test TA.TRIMA'''

    ma = TA.TRIMA(ohlc, 30)
    talib_ma = talib.TRIMA(ohlc['close'])

    #assert round(talib_ma[-1], 5) == round(ma.values[-1], 5)
    # assert 1509.0876041666781 == 1560.25056
    pass  # close enough 
Example #4
Source File: talib_wrapper.py    From tia with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def TRIMA(series, n=30):
    return _series_to_series(series, talib.TRIMA, n) 
Example #5
Source File: test_indicator_overlap.py    From pandas-ta with MIT License 5 votes vote down vote up
def test_trima(self):
        result = pandas_ta.trima(self.close)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'TRIMA_10')

        try:
            expected = tal.TRIMA(self.close, 10)
            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 #6
Source File: talib_indicators.py    From qtpylib with Apache License 2.0 5 votes vote down vote up
def TRIMA(data, **kwargs):
    _check_talib_presence()
    prices = _extract_series(data)
    return talib.TRIMA(prices, **kwargs)