當前位置: 首頁>>代碼示例>>Python>>正文


Python talib.ULTOSC屬性代碼示例

本文整理匯總了Python中talib.ULTOSC屬性的典型用法代碼示例。如果您正苦於以下問題:Python talib.ULTOSC屬性的具體用法?Python talib.ULTOSC怎麽用?Python talib.ULTOSC使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在talib的用法示例。


在下文中一共展示了talib.ULTOSC屬性的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: add_ULTOSC

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def add_ULTOSC(self, timeperiod=14, timeperiod2=14, timeperiod3=28,
               type='line', color='secondary', **kwargs):
    """Ultimate Oscillator."""

    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 = 'ULTOSC({})'.format(str(timeperiod),
                               str(timeperiod2),
                               str(timeperiod3))
    self.sec[name] = dict(type=type, color=color)
    self.ind[name] = talib.ULTOSC(self.df[self.hi].values,
                                  self.df[self.lo].values,
                                  self.df[self.cl].values,
                                  timeperiod,
                                  timeperiod2,
                                  timeperiod3) 
開發者ID:plotly,項目名稱:dash-technical-charting,代碼行數:23,代碼來源:ta.py

示例2: ultosc

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def ultosc(candles: np.ndarray, timeperiod1=7, timeperiod2=14, timeperiod3=28, sequential=False) -> Union[
    float, np.ndarray]:
    """
    ULTOSC - Ultimate Oscillator

    :param candles: np.ndarray
    :param timeperiod1: int - default=7
    :param timeperiod2: int - default=14
    :param timeperiod3: int - default=28
    :param sequential: bool - default=False

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

    res = talib.ULTOSC(candles[:, 3], candles[:, 4], candles[:, 2], timeperiod1=timeperiod1, timeperiod2=timeperiod2,
                       timeperiod3=timeperiod3)

    if sequential:
        return res
    else:
        return None if np.isnan(res[-1]) else res[-1] 
開發者ID:jesse-ai,項目名稱:jesse,代碼行數:25,代碼來源:ultosc.py

示例3: ultosc

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def ultosc(self, sym, frequency, *args, **kwargs):
        if not self.kbars_ready(sym, frequency):
            return []

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

        return ta.ULTOSC(highs, lows, closes, *args, **kwargs) 
開發者ID:myquant,項目名稱:strategy,代碼行數:11,代碼來源:ta_indicator_mixin.py

示例4: __str__

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def __str__(self):
        return 'ULTOSC(symbol=%s, period1=%s, period2=%s, period3=%s)' \
                %(self.symbol, self.period1, self.period2, self.period3) 
開發者ID:edouardpoitras,項目名稱:NowTrade,代碼行數:5,代碼來源:technical_indicator.py

示例5: results

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def results(self, data_frame):
        try:
            ultosc = talib.ULTOSC(data_frame['%s_High' %self.symbol].values,
                                  data_frame['%s_Low' %self.symbol].values,
                                  data_frame['%s_Close' %self.symbol].values,
                                  timeperiod1=self.period1,
                                  timeperiod2=self.period2,
                                  timeperiod3=self.period3)
            data_frame[self.value] = ultosc
        except KeyError:
            data_frame[self.value] = np.nan 
開發者ID:edouardpoitras,項目名稱:NowTrade,代碼行數:13,代碼來源:technical_indicator.py

示例6: test_uo

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def test_uo(self):
        result = pandas_ta.uo(self.high, self.low, self.close)
        self.assertIsInstance(result, Series)
        self.assertEqual(result.name, 'UO_7_14_28')

        try:
            expected = tal.ULTOSC(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

示例7: ULTOSC

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import ULTOSC [as 別名]
def ULTOSC(data, **kwargs):
    _check_talib_presence()
    _, phigh, plow, pclose, _ = _extract_ohlc(data)
    return talib.ULTOSC(phigh, plow, pclose, **kwargs) 
開發者ID:ranaroussi,項目名稱:qtpylib,代碼行數:6,代碼來源:talib_indicators.py


注:本文中的talib.ULTOSC屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。