Untitled
unknown
javascript
10 months ago
408 B
189
Indexable
// © 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")
Editor is loading...
Leave a Comment