Update RSI_Series to check for period != 0 before calculating RSI

This commit is contained in:
Miha Kralj
2023-04-27 22:30:13 -07:00
parent 3b71ac70c8
commit e1680e9d04
145 changed files with 4826 additions and 4207 deletions
+1 -1
View File
@@ -388,7 +388,7 @@ public class Ta_Lib
[Fact]
public void SUM()
{
SUM_Series QL = new(bars.Close, period, false);
CUSUM_Series QL = new(bars.Close, period, false);
Core.Sum(inclose, 0, bars.Count - 1, TALIB, out int outBegIdx, out _, period);
for (int i = QL.Length - 1; i > skip; i--)
{
+1 -1
View File
@@ -426,7 +426,7 @@ public class Tulip_Test
public void SUM() {
double[][] arrin = { inclose };
double[][] arrout = { outdata };
SUM_Series QL = new(bars.Close, period, false);
CUSUM_Series QL = new(bars.Close, period, false);
Tulip.Indicators.sum.Run(inputs: arrin, options: new double[] { period }, outputs: arrout);
for (int i = QL.Length - 1; i > skip; i--) {
double QL_item = QL[i].v;