OPEN-SOURCE SCRIPT

Fibonacci Pullback to 50MA Buy Signal

85
// === CONDITIONS FOR BUY SIGNAL ===

// 1. Price must be inside the fib pullback zone
inFibZone = low <= fib50 and low >= fib618

// 2. Price must touch or approach the 50MA
touchMA = low <= ma50 * 1.002 and low >= ma50 * 0.998 // within 0.2%

// 3. Optional confirmation – bullish candle
reversalCandle = close > open

// FINAL BUY SIGNAL CONDITION
buySignal = inFibZone and touchMA and reversalCandle

// === MARK BUY SIGNAL ===
plotshape(buySignal, style=shape.labelup, color=color.lime, size=size.large,
location=location.belowbar, text="BUY\nFib + 50MA")

Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, alım satım veya diğer türden tavsiye veya öneriler anlamına gelmez ve teşkil etmez. Kullanım Koşulları bölümünde daha fazlasını okuyun.