Is there a way to use a default value for an input of a custom indicator?
e.g.
Sub MyRSI(SLen)
Plot1(RSI(Close,SLen,0))
End Sub
I want a default value for SLen of 14 when I plot the Indicator, but of course the value should be changeable during plotting.
|