[REQ] T3 indicator (source code from tradingview)

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #79495 quote
    SSATANSS
    Participant
    New

    HI guys,

     

    Can someone please help me translate this code to prorealcode. It s a T3 indicator and i am struggling with it 🙁

    //@version=3
    // Copyright (c) 2018-present, Alex Orekhov (everget)
    // T3 indicator script may be freely distributed under the MIT license.
    study(title="T3", shorttitle="T3", overlay=true)
    
    len = input(title="Length", type=integer, defval=5, minval=1)
    factor = input(title="Factor", type=float, defval=0.7, minval=0, maxval=1)
    src = input(title="Source", type=source, defval=close)
    
    gd(series, length) => ema(series, length) * (1 + factor) - ema(ema(series, length), length) * factor
    
    t3 = gd(gd(gd(src, len), len), len)
    
    plot(t3, title="T3", color=#741b47, linewidth=2, transp=0)

    Thanks in advance

    #79498 quote
    Nicolas
    Keymaster
    Master

    There are many indicators based on T3 (Wilson type) moving average on the website.. but you can find its original code in this one as the number 51: average filter regression 

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

[REQ] T3 indicator (source code from tradingview)


ProBuilder: Indicators & Custom Tools

New Reply
Author
author-avatar
SSATANSS @ssatanss Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by Nicolas
7 years, 5 months ago.

Topic Details
Forum: ProBuilder: Indicators & Custom Tools
Language: English
Started: 08/31/2018
Status: Active
Attachments: No files
Logo Logo
Loading...