OPEN-SOURCE SCRIPT

MA Kesişimi - Alım/Satım Sinyalleri

//version=5
indicator("MA Kesişimi - Alım/Satım Sinyalleri", overlay=true)

// Hareketli Ortalamalar
shortMA = ta.sma(close, 50) // 50 periyotluk hareketli ortalama
longMA = ta.sma(close, 200) // 200 periyotluk hareketli ortalama

// Altın Kesişimi (Golden Cross) ve Ölüm Kesişimi (Death Cross) sinyalleri
goldenCross = ta.crossover(shortMA, longMA) // 50 MA 200 MA'yı yukarı keserse
deathCross = ta.crossunder(shortMA, longMA) // 50 MA 200 MA'yı aşağı keserse

// Alım ve Satım sinyallerini göstermek için etiketler
plotshape(goldenCross, title="Altın Kesişimi (Alım Sinyali)", location=location.belowbar, color=color.green, style=shape.labelup, text="AL", textcolor=color.white, size=size.small)
plotshape(deathCross, title="Ölüm Kesişimi (Satım Sinyali)", location=location.abovebar, color=color.red, style=shape.labeldown, text="SAT", textcolor=color.white, size=size.small)

// MA çizgilerini grafikte göstermek
plot(shortMA, color=color.blue, title="50 MA")
plot(longMA, color=color.orange, title="200 MA")
CyclesOscillatorsTrend Analysis

Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publication is governed by House rules. You can favorite it to use it on a chart.

Want to use this script on a chart?


Also on:

Disclaimer