I am using wilder's simple RSI formula (Eup/Eup+Edown) where E=summation
here is my simple code
rsi() is an array, it's size is dependent on period, in this case is 14, it samples price every minute, not SMAed nor EMAed, not averaged. could this be a problem?
Do
If rsi(i - 1) -...