OPEN-SOURCE SCRIPT

MC² Tight Compression Screener v1.0

39
//version=5
indicator("MC² Tight Compression Screener v1.0", overlay=false)

// ————————————————
// Inputs
// ————————————————
lookbackHigh = input.int(50, "Near High Lookback")
atrLength = input.int(14, "ATR Length")
volLength = input.int(20, "Volume SMA Length")
thresholdNear = input.float(0.97, "Near Break % (0.97 = within 3%)")

// ————————————————
// Conditions
// ————————————————

// ATR Compression: shrinking 3 days in a row
atr = ta.atr(atrLength)
atrCompression = atr < atr[1] and atr[1] < atr[2] and atr[2] < atr[3]

// Price is near recent highs
recentHigh = ta.highest(high, lookbackHigh)
nearBreak = close > recentHigh * thresholdNear

// Volume not dead (preferably building)
volAvg = ta.sma(volume, volLength)
volOK = volume > volAvg

// Final signal (binary)
signal = atrCompression and nearBreak and volOK

// ————————————————
// Plot (for Pine Screener)
// ————————————————
plot(signal ? 1 : 0, title="MC2 Compression Signal")

Wyłączenie odpowiedzialności

Informacje i publikacje nie stanowią i nie powinny być traktowane jako porady finansowe, inwestycyjne, tradingowe ani jakiekolwiek inne rekomendacje dostarczane lub zatwierdzone przez TradingView. Więcej informacji znajduje się w Warunkach użytkowania.