Untitled
unknown
javascript
16 days ago
408 B
4
Indexable
Never
// © Mr_Rakun //@version=5 indicator("Alım/Satım Sinyalleri", overlay=true) buySignal = ta.crossover(ta.sma(close, 14), ta.sma(close, 28)) sellSignal = ta.crossunder(ta.sma(close, 14), ta.sma(close, 28)) plotshape(buySignal, style=shape.labelup, location=location.belowbar, color=color.green, text="AL") plotshape(sellSignal, style=shape.labeldown, location=location.abovebar, color=color.red, text="SAT")
Leave a Comment