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
+3 -2
View File
@@ -10,13 +10,13 @@ public class T3Indicator : IndicatorBase
public double Vfactor { get; set; } = 0.62;
[InputParameter("Use SMA for warmup", sortIndex: 3)]
public bool UseSma { get; set; }
public bool UseSma { get; set; } = false;
private T3? ma;
protected override AbstractBase QuanTAlib => ma!;
public override string ShortName => $"T3 {Period} : {Vfactor:F2} : {SourceName}";
public T3Indicator()
public T3Indicator() : base()
{
Name = "T3 - Tillson T3 Moving Average";
}
@@ -24,5 +24,6 @@ public class T3Indicator : IndicatorBase
protected override void InitIndicator()
{
ma = new T3(period: Period, vfactor: Vfactor, useSma: UseSma);
base.InitIndicator();
}
}