I call an RSI in else if (State == State.DataLoaded)
{
RSI1 = RSI(Close, 14, 3);
how do I call the result for a specific bar number in OnRender.
I've tried
RSI1[0] - didn't work.
int CurrentBarFromZero = BarsArray[0].Count - ChartBars.ToIndex;
(Input as RSI1).Values[0].GetValueAt(CurrentBarFromZero);
Didn't work
RSI1.GetValueAt(3);
Didn't work.
Any help would be appreciated. Thanks!

Comment