Afirma + documentation +semver: patch

This commit is contained in:
Miha Kralj
2024-09-24 16:41:26 -07:00
parent 07efb4b0de
commit 133c65ceaf
250 changed files with 14425 additions and 713 deletions
+2 -1
View File
@@ -12,7 +12,7 @@ public class PercentileIndicator : IndicatorBase
protected override AbstractBase QuanTAlib => percentile!;
public override string ShortName => $"PERCENTILE {Period} {Percent:F0}% : {SourceName}";
public PercentileIndicator()
public PercentileIndicator() : base()
{
Name = "PERCENTILE - n-th Percentile ";
SeparateWindow = false;
@@ -22,6 +22,7 @@ public class PercentileIndicator : IndicatorBase
{
percentile = new(Period, Percent);
MinHistoryDepths = percentile.WarmupPeriod;
base.InitIndicator();
}
}