Python talib.HT_PHASOR Examples

The following are 4 code examples of talib.HT_PHASOR(). 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: ht_phasor.py    From jesse with MIT License 6 votes vote down vote up
def ht_phasor(candles: np.ndarray, source_type="close", sequential=False) -> IQ:
    """
    HT_PHASOR - Hilbert Transform - Phasor Components

    :param candles: np.ndarray
    :param source_type: str - default: "close"
    :param sequential: bool - default=False

    :return: IQ(inphase, quadrature)
    """
    if not sequential and len(candles) > 240:
        candles = candles[-240:]

    source = get_candle_source(candles, source_type=source_type)
    inphase, quadrature = talib.HT_PHASOR(source)

    if sequential:
        return IQ(inphase, quadrature)
    else:
        return IQ(inphase[-1], quadrature[-1]) 
Example #2
Source File: talib_series.py    From QUANTAXIS with MIT License 5 votes vote down vote up
def HT_PHASOR(Series):
    res = talib.HT_PHASOR(Series.values)
    return pd.Series(res, index=Series.index) 
Example #3
Source File: talib_wrapper.py    From tia with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def HT_PHASOR(series):
    return _series_to_frame(series, ['InPhase', 'Quadrature'], talib.HT_PHASOR) 
Example #4
Source File: talib_indicators.py    From qtpylib with Apache License 2.0 5 votes vote down vote up
def HT_PHASOR(data, **kwargs):
    _check_talib_presence()
    prices = _extract_series(data)
    return talib.HT_PHASOR(prices, **kwargs)