Ads Top

Super Advanced Oscillator Indicator

Super Advanced Oscillator Indicator
Built by Grok
Working?


//@version=5
//indicator("Advanced Oscillator with BOS, CHoCH & Supertrend", shorttitle="AdvOscBCS", overlay=false)

// === Inputs ===
// Core Settings
length = input.int(14, "Base Length", minval=1)
smooth = input.int(5, "Smooth", minval=1)
src = input.source(close, "Source")
adapt_mode = input.string("Dynamic", "Adaptation Mode", options=["Dynamic", "Static"])

// Volatility Settings (for Adaptive Length)
vol_length = input.int(20, "Volatility Length", minval=1)
vol_sensitivity = input.float(1.5, "Volatility Sensitivity", minval=0.1, step=0.1)

// Supertrend Settings
supertrend_period = input.int(10, "Supertrend Period", minval=1)
supertrend_factor = input.float(3.0, "Supertrend Factor", minval=0.1)
supertrend_filter = input.bool(true, "Supertrend Filter")

// BOS & CHoCH Settings
structure_length = input.int(20, "Structure Lookback", minval=2)
structure_sensitivity = input.float(1.0, "Structure Sensitivity", minval=0.1)

// Signal Settings
signal_length = input.int(9, "Signal Length", minval=1)
confidence = input.float(0.7, "Signal Confidence", minval=0.0, maxval=1.0)

// Levels
overbought = input.float(70, "Overbought", minval=0, maxval=100)
oversold = input.float(30, "Oversold", minval=0, maxval=100)

// Visual Settings
show_signals = input.bool(true, "Show Signals")
show_zones = input.bool(true, "Show Zones")

// === Calculations ===
// Adaptive Length
vol = ta.stdev(src, vol_length)
vol_avg = ta.sma(vol, vol_length)
vol_factor = vol_avg != 0 ? vol / vol_avg * vol_sensitivity : 1.0
adaptive_length = adapt_mode == "Dynamic" ? math.max(1, math.round(length * vol_factor)) : length

// Oscillator Components
rsi = ta.rsi(src, adaptive_length)
stoch_k = ta.stoch(high, low, src, adaptive_length, adaptive_length, smooth)
osc_raw = (rsi + stoch_k) / 2
oscillator = ta.wma(osc_raw, smooth)
signal_line = ta.ema(oscillator, signal_length)

// Supertrend
[supertrend_line, supertrend_dir_raw] = ta.supertrend(supertrend_factor, supertrend_period)
supertrend_dir = supertrend_dir_raw < 0 ? 1 : -1  // 1 for uptrend, -1 for downtrend

// BOS & CHoCH
swing_high = ta.highest(high, structure_length)
swing_low = ta.lowest(low, structure_length)
prev_swing_high = ta.highest(high[1], structure_length)
prev_swing_low = ta.lowest(low[1], structure_length)

bull_bos = high > prev_swing_high and oscillator > signal_line
bear_bos = low < prev_swing_low and oscillator < signal_line

bull_choch = low < prev_swing_low and oscillator > ta.lowest(oscillator, structure_length) * (1.0 + structure_sensitivity * 0.01)
bear_choch = high > prev_swing_high and oscillator < ta.highest(oscillator, structure_length) * (1.0 - structure_sensitivity * 0.01)

// Signals
osc_diff = oscillator - signal_line
bull_signal_raw = ta.crossover(oscillator, signal_line) and osc_diff > confidence
bear_signal_raw = ta.crossunder(oscillator, signal_line) and osc_diff < -confidence

bull_signal = bull_signal_raw and (not supertrend_filter or supertrend_dir > 0)
bear_signal = bear_signal_raw and (not supertrend_filter or supertrend_dir < 0)

final_bull = bull_signal or bull_bos or bull_choch
final_bear = bear_signal or bear_bos or bear_choch

// === Visualization ===
hline(overbought, "Overbought", color=color.red, linestyle=hline.style_dashed)
hline(oversold, "Oversold", color=color.green, linestyle=hline.style_dashed)
if show_zones
    bgcolor(oscillator > overbought ? color.new(color.red, 90) : na)
    bgcolor(oscillator < oversold ? color.new(color.green, 90) : na)

plot(oscillator, "Oscillator", color=color.blue, linewidth=2)
plot(signal_line, "Signal", color=color.orange, linewidth=1)

if show_signals
    plotshape(bull_signal, "Buy", shape.triangleup, location.bottom, color.green, size=size.tiny)
    plotshape(bear_signal, "Sell", shape.triangledown, location.top, color.red, size=size.tiny)
    plotshape(bull_bos, "Bull BOS", shape.diamond, location.bottom, color.lime, size=size.tiny)
    plotshape(bear_bos, "Bear BOS", shape.diamond, location.top, color.maroon, size=size.tiny)
    plotshape(bull_choch, "Bull CHoCH", shape.circle, location.bottom, color.teal, size=size.tiny)
    plotshape(bear_choch, "Bear CHoCH", shape.circle, location.top, color.purple, size=size.tiny)

// === Alerts ===
alertcondition(bull_signal, "Buy Signal", "Oscillator Buy")
alertcondition(bear_signal, "Sell Signal", "Oscillator Sell")
alertcondition(bull_bos, "Bullish BOS", "Break of Structure Up")
alertcondition(bear_bos, "Bearish BOS", "Break of Structure Down")
alertcondition(bull_choch, "Bullish CHoCH", "Change of Character Up")
alertcondition(bear_choch, "Bearish CHoCH", "Change of Character Down")
alertcondition(supertrend_dir > 0 and supertrend_dir[1] <= 0, "Supertrend Up", "Supertrend Bullish")
alertcondition(supertrend_dir < 0 and supertrend_dir[1] >= 0, "Supertrend Down", "Supertrend Bearish")

No comments:

Powered by Blogger.