You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RSI should be 100 when the Average Loss equals zero. Using the RelativeStrengthIndexByTuple we should get 100 when there is no Average Loss, but instead RSI is null.
How to reproduce:
List<decimal?> allTradyCandlesList = new List<decimal?>();
for (int i = 1; i < 21; i++)
{
allTradyCandlesList.Add(i);
}
var rsi = new RelativeStrengthIndexByTuple(allTradyCandlesList, 10)[allTradyCandlesList.Count - 1];
The text was updated successfully, but these errors were encountered:
RSI should be 100 when the Average Loss equals zero. Using the RelativeStrengthIndexByTuple we should get 100 when there is no Average Loss, but instead RSI is null.
How to reproduce:
The text was updated successfully, but these errors were encountered: