//@version=5 indicator("SSL Channel", shorttitle="SSL Channel", overlay=true, timeframe="", timeframe_gaps=false) wicks = input(false, "Take Wicks into Account ?") highlightState = input(true, "Highlight State ?") ma(source, length, type) => type == "SMA" ? ta.sma(source, length) : type == "EMA" ? ta.ema(source, length) : type == "SMMA (RMA)" ?...