Login Page - Create Account

Support Board


Date/Time: Sat, 18 Jan 2025 11:09:11 +0000



Post From: RSI Problem?

[2018-01-27 18:01:15]
Usermb - Posts: 126
I know this is a very old topic, but the problem lies in the decission to actually never allow 100, see below.
@SierraSupport: naive question, but why is 0 a valid value (when 0 == SmoothedUpSumsTemp[Index]) but 100 not?
IMHO this is not correct and leads to a bias.


  // compute RSI
  if (SmoothedDownSumsTemp[Index] != 0.0f)
  {
...
  }
  else
  {
    RSIOut[Index] = RSIOut[Index - 1];
  }

Date Time Of Last Edit: 2018-01-27 21:40:31