tests and cleanup

This commit is contained in:
Miha Kralj
2024-10-11 18:02:09 -07:00
parent 839313c9f2
commit cc45cebeb4
96 changed files with 3640 additions and 327 deletions
+3 -3
View File
@@ -14,7 +14,8 @@ public class PercentileIndicator : IndicatorBase
public PercentileIndicator() : base()
{
Name = "PERCENTILE - n-th Percentile ";
Name = "PERCENTILE - n-th Percentile";
Description = "Calculates the value below which a given percentage of observations falls within a specified period.";
SeparateWindow = false;
}
@@ -24,5 +25,4 @@ public class PercentileIndicator : IndicatorBase
MinHistoryDepths = percentile.WarmupPeriod;
base.InitIndicator();
}
}
}