Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Tillson T3 indicator help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Tillson T3 indicator help

    I tried the built in T3 indicator but is not smooth enough. I am looking for this version of Tillson T3 indicator. Mostly just these lines -



    length1 = input(8, "T3 Length")
    a1 = input(0.7, "Volume Factor")
    e1 = ema((high + low + 2 * close) / 4, length1)
    e2 = ema(e1, length1)
    e3 = ema(e2, length1)
    e4 = ema(e3, length1)
    e5 = ema(e4, length1)
    e6 = ema(e5, length1)
    c1 = -a1 * a1 * a1
    c2 = 3 * a1 * a1 + 3 * a1 * a1 * a1
    c3 = -6 * a1 * a1 - 3 * a1 - 3 * a1 * a1 * a1
    c4 = 1 + 3 * a1 + a1 * a1 * a1 + 3 * a1 * a1
    T3 = c1 * e6 + c2 * e5 + c3 * e4 + c4 * e3
    col1 = T3 > T3[1]
    col3 = T3 < T3[1]
    color_1 = col1 ? color.green : col3 ? color.red : color.yellow
    plot(T3, color=color_1, linewidth=3, title="T3")
    Developed by Tim Tillson, the T3 Moving Average is considered superior to traditional moving averages as it is smoother, more responsive and thus performs better in ranging market conditions as well. However, it bears the disadvantage of overshooting the price as it attempts to realign itself to current market conditions. It incorporates a smoothing technique which allows it to plot curves more gradual than ordinary moving averages and with a smaller lag. Its smoothness is derived from the …

    #2
    Have you compared ZLEMA to others, like TEMA or DEMA, for what you want? It does overshoot a bit (I think all exponential MA's do that) but it is smoother than TEMA.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    571 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    549 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    549 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X