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


Python talib.AROON屬性代碼示例

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


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

示例1: aroon

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def aroon(candles: np.ndarray, period=14, sequential=False) -> AROON:
    """
    AROON - Aroon

    :param candles: np.ndarray
    :param period: int - default=14
    :param sequential: bool - default=False

    :return: AROON(down, up)
    """
    if not sequential and len(candles) > 240:
        candles = candles[-240:]

    aroondown, aroonup = talib.AROON(candles[:, 3], candles[:, 4], timeperiod=period)

    if sequential:
        return AROON(aroondown, aroonup)
    else:
        return AROON(aroondown[-1], aroonup[-1]) 
開發者ID:jesse-ai,項目名稱:jesse,代碼行數:21,代碼來源:aroon.py

示例2: test_aroon

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def test_aroon(self):
        result = pandas_ta.aroon(self.high, self.low)
        self.assertIsInstance(result, DataFrame)
        self.assertEqual(result.name, 'AROON_14')

        try:
            expected = tal.AROON(self.high, self.low)
            expecteddf = DataFrame({'AROOND_14': expected[0], 'AROONU_14': expected[1]})
            pdt.assert_frame_equal(result, expecteddf)
        except AssertionError as ae:
            try:
                aroond_corr = pandas_ta.utils.df_error_analysis(result.iloc[:,0], expecteddf.iloc[:,0], col=CORRELATION)
                self.assertGreater(aroond_corr, CORRELATION_THRESHOLD)
            except Exception as ex:
                error_analysis(result.iloc[:,0], CORRELATION, ex)

            try:
                aroonu_corr = pandas_ta.utils.df_error_analysis(result.iloc[:,1], expecteddf.iloc[:,1], col=CORRELATION)
                self.assertGreater(aroonu_corr, CORRELATION_THRESHOLD)
            except Exception as ex:
                error_analysis(result.iloc[:,1], CORRELATION, ex, newline=False) 
開發者ID:twopirllc,項目名稱:pandas-ta,代碼行數:23,代碼來源:test_indicator_trend.py

示例3: AROON

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def AROON(DataFrame, N=14):
    """阿隆指標
    
    Arguments:
        DataFrame {[type]} -- [description]
    
    Keyword Arguments:
        N {int} -- [description] (default: {14})
    
    Returns:
        [type] -- [description]
    """

    ar_up, ar_down = talib.AROON(DataFrame.high.values, DataFrame.low.values, N)
    return pd.DataFrame({'AROON_UP': ar_up,'AROON_DOWN': ar_down}, index=DataFrame.index) 
開發者ID:QUANTAXIS,項目名稱:QUANTAXIS,代碼行數:17,代碼來源:talib_indicators.py

示例4: aroon

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

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

        v = ta.AROON(highs, lows, *args, **kwargs)

        return v 
開發者ID:myquant,項目名稱:strategy,代碼行數:12,代碼來源:ta_indicator_mixin.py

示例5: add_AROON

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def add_AROON(self, timeperiod=14,
              types=['line', 'line'],
              colors=['increasing', 'decreasing'],
              **kwargs):
    """Aroon indicators.

    Note that the first argument of types and colors refers to Aroon up while
    the second argument refers to Aroon down.

    """
    if not (self.has_high and self.has_low):
        raise Exception()

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

    if 'type' in kwargs:
        types = [kwargs['type']] * 2
    if 'color' in kwargs:
        colors = [kwargs['color']] * 2

    name = 'AROON({})'.format(str(timeperiod))
    uaroon = name + ' [Up]'
    daroon = name + ' [Dn]'
    self.sec[uaroon] = dict(type=types[0], color=colors[0])
    self.sec[daroon] = dict(type=types[1], color=colors[1], on=uaroon)
    self.ind[uaroon], self.ind[daroon] = talib.AROON(self.df[self.hi].values,
                                                     self.df[self.lo].values,
                                                     timeperiod) 
開發者ID:plotly,項目名稱:dash-technical-charting,代碼行數:34,代碼來源:ta.py

示例6: handle_bar

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def handle_bar(context, bar_dict):
    highs = history_bars(context.s1, 60, '1d', 'high')
    lows = history_bars(context.s1, 60, '1d', 'low')

    down, up = talib.AROON(np.array(highs), np.array(lows), timeperiod=24)
    down = down[-1]
    up = up[-1]

    if up > down:
        order_target_percent(context.s1, 0.95)
    else:
        order_target_percent(context.s1, 0.0)


# after_trading函數會在每天交易結束後被調用,當天隻會被調用一次 
開發者ID:DingTobest,項目名稱:Rqalpha-myquant-learning,代碼行數:17,代碼來源:aroon.py

示例7: AROON

# 需要導入模塊: import talib [as 別名]
# 或者: from talib import AROON [as 別名]
def AROON(frame, n=14, high_col='high', low_col='low'):
    return _frame_to_frame(frame, [high_col, low_col], ['AroonDown', 'AroonUp'], talib.AROON, n) 
開發者ID:bpsmith,項目名稱:tia,代碼行數:4,代碼來源:talib_wrapper.py

示例8: AROON

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


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