TechnicalAnalysis.NET
TechnicalAnalysis.NET copied to clipboard
Hot to calculate BTCUSDT RSI value?
Hello, I want to calculate the RSI value for BTCUSDT using its library.
The parameters are as follows:
- RSI Period: 14
- BTCUSDT -> last 210 candles for 15-minute chart. (15*14)
I am using the following code:
var result = Indicators.Rsi(closePrices, 14);
There are a lot of values in "result.Rsi". Which of these corresponds to the RSI value we see on Tradingview?
Also why are there loads of values? I just want to get BTCUSDT -> RSI value on 15 minute chart for RSI 14 period. Can you help me with this?
Thank yoru.