OPEN-SOURCE SCRIPT

Nuba 20

//version=6
indicator("Tilson T33", overlay=true)

// Parametreler
b = input.float(title="Factor", defval=0.7)
period = input.int(title="Period", defval=7)
linewidth = input.int(title="Linewidth", defval=3)
solidColor = input.bool(title="Solid Color", defval=false)

// T3 katsayıları
c1 = -b * b * b
c2 = 3 * b * b + 3 * b * b * b
c3 = -6 * b * b - 3 * b - 3 * b * b * b
c4 = 1 + 3 * b + b * b * b + 3 * b * b

// T3 hesaplama fonksiyonu
t3(len) =>
ema1 = ta.ema(close, len) // 1. EMA
ema2 = ta.ema(ema1, len) // 2. EMA
ema3 = ta.ema(ema2, len) // 3. EMA
ema4 = ta.ema(ema3, len) // 4. EMA
ema5 = ta.ema(ema4, len) // 5. EMA
ema6 = ta.ema(ema5, len) // 6. EMA
t3_value = c1 * ema6 + c2 * ema5 + c3 * ema4 + c4 * ema3 // Son T3 hesaplaması
t3_value

// Tilson T3 hesaplama
t3plot = t3(period)

// Trend renk değiştirme
color_t3 = solidColor ? color.aqua : (t3plot > t3plot[1] ? color.green : color.red)

// T3 çizimi
plot(t3plot, color=color_t3, linewidth=linewidth)

// Alarm koşulu: T3 renk değiştiğinde alarm ver
alarm_condition = (t3plot > t3plot[1] and t3plot[1] <= t3plot[2]) or (t3plot < t3plot[1] and t3plot[1] >= t3plot[2])

// Alarmı tetikleyin
alertcondition(alarm_condition, title="T3 Renk Değiştirdi", message="Tilson T3 Renk Değiştirdi!")
Bands and ChannelsBreadth IndicatorsChart patterns

開源腳本

在真正的TradingView精神中,這個腳本的作者以開源的方式發佈,這樣交易員可以理解和驗證它。請向作者致敬!您可以免費使用它,但在出版物中再次使用這段程式碼將受到網站規則的約束。 您可以收藏它以在圖表上使用。

想在圖表上使用此腳本?

免責聲明