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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    44 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    28 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    98 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    176 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    170 views
    0 likes
    Last Post CarlTrading  
    Working...
    X