with the following code I get a wrong rsi value:
RSI rsi = RSI(Close, 14, 3);
double rsiValue = rsi.Value[0];
But the value is not relative from 0-100 and additional not top when bottom as in the diagram.
How can I get RSI like in the diagram?
14 and 3 are the default parameters out of the diragram.
Thanks
Andreas

Comment