OPEN-SOURCE SCRIPT

MA Intersection - Buy/Sell Signals

//version=5
indicator("MA Intersection - Buy/Sell Signals", 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")
Chart patternsCyclesforecasting

开源脚本

本着真正的TradingView精神,此脚本的作者已将其开源,以便交易者可以理解和验证它。向作者致敬!您可以免费使用它,但在出版物中重复使用此代码受网站规则约束。 您可以收藏它以在图表上使用。

想在图表上使用此脚本?


更多:

免责声明