Im try the fetch the live RSI to my program please help me.

Hello guys im try the fetch RSI in binance to my program but whem im fetch the currectly rsi the program is show me BTCUSDT RSI 49.61 but currectly on Binance website is 53.52 , When I run the programme, I want it to write what the default RSI in the programme is, but I can’t do it.

Hi @Emre,

The difference you’re seeing betweeen your program’s RSI and the Binance’s one usually comes down to differences in input data or RSI calculation settings, such as:

  1. Candle interval - Are you using the same interval (i.e. 1m, 15m, 1h etc.) as Binance’s RSI chart?
  2. RSI period - Binance typically uses a 14 period RSI (https://www.binance.com/en/square/post/11119547027754).
  3. Data source - Make sure you’re using closing prices from the candles (close field) and ideally fetching at least 100 candles to get a stable RSI result.

Let us know if you need any more help on this!