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 CarlTrading, Yesterday, 09:41 PM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    31 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    30 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-25-2026, 09:53 PM
    0 responses
    34 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 03-25-2026, 09:51 PM
    0 responses
    19 views
    0 likes
    Last Post CaptainJack  
    Working...
    X