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
@@ -10,7 +10,7 @@ public class EntropyIndicator : IndicatorBase
protected override AbstractBase QuanTAlib => entropy!;
public override string ShortName => $"ENTROPY {Period} : {SourceName}";
public EntropyIndicator()
public EntropyIndicator() : base()
{
Name = "ENTROPY - Entropy";
SeparateWindow = true;
@@ -20,5 +20,6 @@ public class EntropyIndicator : IndicatorBase
{
entropy = new(Period);
MinHistoryDepths = entropy.WarmupPeriod;
base.InitIndicator();
}
}