//@version=5
indicator("Moving Average Envelopes with Buy/Sell Signals", overlay=true)
// Kullanıcı girişi
length = input.int(20, title="MA Length")
mult = input.float(2, title="Envelope Multiplier (%)")
// Hareketli Ortalama hesaplama
ma = ta.sma(close, length)
// Üst ve Alt Zarflar
upper_envelope = ma * (1 + mult / 100)
lower_envelope = ma * (1 - mult /...