InvestorUnknown

Aroon ForLoop [InvestorUnknown]

Overview

The Aroon ForLoop indicator is designed to calculate an array of Aroon values over a range of lengths, providing trend signals based on various moving averages. It offers flexibility with different signal modes and visual customizations.

User Input

  • Start Length (a) and End Length (b): Defines the range for calculating Aroon values.
  • MA Type (maType) and MA Length (c): Selects the moving average type (EMA, SMA, WMA, VWMA, TMA) and its length.
  • Calculation Source (s): Specifies the data source for calculations.
  • Signal Mode (sigmode): Offers options like Fast, Slow, Thresholds Crossing, and Fast Threshold to generate signals.
  • Thresholds: Configures long and short thresholds for signal generation.
  • Visualization Options: Customizes bull and bear colors, and enables/disables bar coloring.
  • Alert Settings: Chooses whether to wait for bar close for alert confirmation.

Signal Calculation

Signal Mode (sigmode): Determines the type of signal generated by the indicator. Options are "Fast", "Slow", "Thresholds Crossing", and "Fast Threshold".
1. Slow: is a simple crossing of the midline (0).
2. Fast: positive signal depends if the current MA > MA or MA is above 0.99, negative signals comes if MA < MA or MA is below -0.99.
3. Thresholds Crossing: simple ta.crossover and ta.crossunder of the user defined threshold for Long and Short.
4. Fast Threshold: signal changes if the value of Aroon MA changes by more than user defined threshold against the current signal

col1 = MA > 0 ? colup : coldn
var color col2 = na
if MA > MA[1] or MA > 0.99
    col2 := colup
if MA < MA[1] or MA < -0.99
    col2 := coldn
var color col3 = na
if ta.crossover(MA,longth)
    col3 := colup
if ta.crossunder(MA,shortth)
    col3 := coldn
var color col4 = na 
if (MA > MA[1] + fastth)
    col4 := colup
if (MA < MA[1] - fastth)
    col4 := coldn

color col = na
if sigmode == "Slow"
    col := col1
if sigmode == "Fast"
    col := col2
if sigmode == "Thresholds Crossing"
    col := col3
if sigmode == "Fast Threshold"
    col := col4
else
    na

Visualization Settings

  • Bull Color (colup): The color used to indicate bullish signals.
  • Bear Color (coldn): The color used to indicate bearish signals.
  • Color Bars (barcol): Option to color the bars based on the signal.

Custom Function

AroonForLoop: Calculates Aroon values over the specified range, determines the trend, and averages the results using the chosen moving average type.

AroonForLoop(a, b, c) =>
    var SignalArray = array.new_float(b - a + 1, 0.0)
    for x = 0 to (b - a)
        len = a + x
        upper = 100 * (ta.highestbars(high, len + 1) + len)/len
        lower = 100 * (ta.lowestbars(low, len + 1) + len)/len
        trend = upper > lower ? 1 : -1
        array.set(SignalArray, x, trend)
    Avg = array.avg(SignalArray)
    float MA = switch maType
        "EMA" =>   ta.ema(Avg,    c)
        "SMA" =>   ta.sma(Avg,    c)
        "WMA" =>   ta.wma(Avg,    c)
        "VWMA" =>  ta.vwma(Avg,   c)
        "TMA" =>   ta.trima(Avg,  c)
        => 
            runtime.error("No matching MA type found.")
            float(na)
    [SignalArray, Avg, MA]

Important Considerations

  • Fast Responses: The Aroon ForLoop indicator is designed for quick identification of trend changes, making it ideal for fast-paced trading environments.
  • Moving Average Types: Supports various MA types (EMA, SMA, WMA, VWMA, TMA) for adaptable smoothing of trend signals.
  • Combination with Other Indicators: For more reliable signals, use this indicator in conjunction with other technical indicators.

Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?