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 fx.practic, 10-15-2013, 12:53 AM
    5 responses
    5,404 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by Shai Samuel, 07-02-2022, 02:46 PM
    4 responses
    95 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by DJ888, Yesterday, 10:57 PM
    0 responses
    8 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    159 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Yesterday, 09:29 PM
    0 responses
    8 views
    0 likes
    Last Post Belfortbucks  
    Working...
    X