Float levels for rsi,updated version below just with more options A way to get this indicator is to copy paste the source code below to your srcipt editor and save.
//By Glaz study("RSI Float") RsiPeriod = 14 RsiPrice = close MinMaxPeriod =input(200) LevelUp = input(76.4) LevelMiUp = input(55.0) LevelMiDown = input(45.0) LevelDown = input(23.6) src=close,len=input(14) RSI(src,len)=> up = rma(max(change(src), 0), len) down = rma(-min(change(src), 0), len) RSI = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down)) RSI
Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.