mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-19 11:08:05 +00:00
Afirma + documentation
This commit is contained in:
@@ -5,10 +5,12 @@ public class DsmaIndicator : IndicatorBase
|
||||
{
|
||||
[InputParameter("Period", sortIndex: 1, 1, 2000, 1, 0)]
|
||||
public int Period { get; set; } = 10;
|
||||
[InputParameter("Scale factor", sortIndex: 2, minimum: 0.01, maximum: 1.0, increment: 0.01, decimalPlaces: 2)]
|
||||
public double Scale { get; set; } = 0.5;
|
||||
|
||||
private Dsma? ma;
|
||||
protected override AbstractBase QuanTAlib => ma!;
|
||||
public override string ShortName => $"DSMA {Period} : {SourceName}";
|
||||
public override string ShortName => $"DSMA {Period} : {Scale:F2} : {SourceName}";
|
||||
|
||||
public DsmaIndicator()
|
||||
{
|
||||
@@ -17,7 +19,7 @@ public class DsmaIndicator : IndicatorBase
|
||||
|
||||
protected override void InitIndicator()
|
||||
{
|
||||
ma = new Dsma(Period);
|
||||
ma = new Dsma(Period, Scale);
|
||||
MinHistoryDepths = ma.WarmupPeriod;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user