// PineScript Example study("My Custom Indicator", overlay=true) length = input(14, "Length") src = close ema = ta.ema(src, length) plot(ema, "EMA", color=color.blue) // Error Detection Example invalidVariable = undefinedFunction()
Line 11: Undefined variable 'undefinedFunction'