Free My RSI
 0
  0
  226
06 Aug 2024, 09:20
//@version=5indicator(title="Relative Strength Index", shorttitle="RSI", format=format.price, precision=2, timeframe="", timeframe_gaps=true) ma(source, length, type) =>    switch type        "SMA" => ta.sma(source, length)        "Bollinger Bands" => ta.sma(source, length)   ...
Free My RSI
 0
  0
  192
06 Aug 2024, 09:15
 ma(source, length, type) =>    switch type        "SMA" => ta.sma(source, length)        "Bollinger Bands" => ta.sma(source, length)        "EMA" => ta.ema(source, length)   ...