Wycok hl//@version=5
indicator("Wyckoff Trend Indicator", overlay=true)
// Input Parameters
ma_length = input.int(50, title="Moving Average Length", minval=1)
volume_threshold = input.float(1.5, title="Volume Threshold Multiplier", minval=0.1)
// Calculate Moving Average
ma = ta.sma(close, ma_length)
//