dotcover

s1

.sln

s1

s1

s2

s3

s4

s5

s1

s2

x

x2

x3

x4

x5

x6

x1

sonarcube cleanup1

sonarcube cleanup2

sonarcube cleanup 3

fixes

q

q

q

q

q

q

q

q

q1

q2

q

q1

codacy 1
This commit is contained in:
Miha Kralj
2024-09-23 22:08:40 -07:00
parent 846429eccf
commit 58d72c06ca
244 changed files with 621 additions and 14397 deletions
+2 -3
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; } = false;
public bool UseSma { get; set; }
private T3? ma;
protected override AbstractBase QuanTAlib => ma!;
public override string ShortName => $"T3 {Period} : {Vfactor:F2} : {SourceName}";
public T3Indicator() : base()
public T3Indicator()
{
Name = "T3 - Tillson T3 Moving Average";
}
@@ -24,6 +24,5 @@ public class T3Indicator : IndicatorBase
protected override void InitIndicator()
{
ma = new T3(period: Period, vfactor: Vfactor, useSma: UseSma);
base.InitIndicator();
}
}