OPEN-SOURCE SCRIPT

My script

36
5
indicator("Bounce from 150-DMA", overlay=true)

// ממוצע נע 150 ימים
ma150 = ta.sma(close, 150)

// תנאי: מחיר קרוב לממוצע נע (±1%)
proximity = abs(close - ma150) / ma150 < 0.01

// תנאי: נר נוכחי סוגר מעל קודמו (עלייה)
bullish_candle = close > close[1]

// תנאי: נר נוכחי מעל ממוצע נע
above_ma = close > ma150

// כל התנאים יחד – Bounce מה-150DMA
bounce_signal = proximity and bullish_candle and above_ma

// ציור אינדיקטור גרפי
plot(ma150, color=color.orange, title="MA150")
plotshape(bounce_signal, location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small, title="Bounce

Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.