Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Dogecoin / TetherUS
Jan 3
dip tepe indikatörü
0
Grab this chart
Grab this chart
//
version
=5
indicator("Basit Al-Sat İndikatörü", overlay=true)
// Gösterge parametreleri
length = input.int(14, title="Uzunluk")
src = input(close, title="Kaynak")
// Hareketli ortalamalar
ma = ta.sma(src, length)
ma2 = ta.sma(src, length*2)
// Al ve Sat Sinyalleri
alSinyali = ta.crossover(ma, ma2)
satSinyali = ta.crossunder(ma, ma2)
// Görselleştirme
plot(ma, color=color.blue, title="MA")
plot(ma2, color=color.red, title="MA2")
plotshape(alSinyali, title="Al Sinyali", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(satSinyali, title="Sat Sinyali", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
hakancicek58
Follow
Trend Analysis
hakancicek58
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.