Minimal RSI conversion probe
Inputs: Length(14); Vars: Result(0); Result = RSI(Close, 14); Plot1(Result);
Generated Pine Script
//@version=6indicator("SEO RSI probe", overlay=true)length = input.float(14.0, "length")var float result = 0float __el_plot1 = nacolor __el_plot1_color = color.blue__el_call1 = ta.rsi(close, 14)if bar_index >= 13result := __el_call1__el_plot1 := resultplot(__el_plot1, title="Plot1", color=__el_plot1_color)
Probe result: Passed