RSI(Period) as Array
RSI fucntion returns an array containing the Period's RSI.
This function has one parameter:
Period
The period used to calculate the RSI.
Example:
' This is an indicator
Sub Main()
TArr =
RSI(13)
SetIndic(EMA(TArr, 9))
End Sub