RSI

Relative Strength Index

RSI measures the magnitude of recent price changes to evaluate overbought or oversold conditions. Values above 70 indicate overbought, below 30 indicate oversold.

All Sample Values

PeriodDateCloseRSI
109/11/2025$2334.89N/A
209/12/2025$2378.45N/A
309/13/2025$2367.89N/A
409/14/2025$2395.12N/A
509/15/2025$2432.56N/A
609/16/2025$2456.78N/A
709/17/2025$2478.34N/A
809/18/2025$2498.67N/A
909/19/2025$2523.45N/A
1009/20/2025$2545.89N/A
1109/21/2025$2567.12N/A
1209/22/2025$2574.56N/A
1309/23/2025$2589.34N/A
1409/24/2025$2601.23N/A
1509/25/2025$2623.4596.59
1609/26/2025$2645.6796.83
1709/27/2025$2667.8997.06
1809/28/2025$2678.3497.16
1909/29/2025$2689.2397.27
2009/30/2025$2701.5697.39
2110/01/2025$2723.4597.60
2210/02/2025$2745.6797.78
2310/03/2025$2767.8997.96
2410/04/2025$2789.1298.11
2510/05/2025$2812.3498.26
2610/06/2025$2834.5698.39
2710/07/2025$2856.7898.51
2810/08/2025$2878.9098.63
2910/09/2025$2901.2398.73
3010/10/2025$2923.4598.83
3110/11/2025$2945.6798.91
3210/12/2025$2967.8998.99
3310/13/2025$2978.3499.03
3410/14/2025$3001.2399.11
3510/15/2025$3023.4599.18
3610/16/2025$3045.6799.24
3710/17/2025$3067.8999.30
3810/18/2025$3078.4599.32
3910/19/2025$3089.5699.35
4010/20/2025$3101.2399.38

Code Example

import { RSI } from 'trading-signals';

const rsi = new RSI(14);

// Add price values
rsi.add(44);
rsi.add(45);
rsi.add(46);
// ... add more values

if (rsi.isStable) {
  console.log('RSI:', rsi.getResultOrThrow().toFixed(2));
}

⚠️ Important Disclaimer

Signals by technical trading indicators are not guarantees. Always use proper risk management, confirm signals with multiple indicators, and never rely on a single indicator for trading decisions. This library is for educational purposes and does not constitute financial advice.