0

i want to adjust the range for a rsi plot from 0-100 to -25 - 125

rsi = down == -25 ? 125 : up == -25 ? -25 : 125 - (125 / (1 + up / down))

I've been trying to do this by editing the line above. It sort of works with values above 100 but not with the negative value. What am i doing wrong here?

0 Answers0