mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 20:48:04 +00:00
Afirma + documentation +semver: patch
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using TradingPlatform.BusinessLayer;
|
||||
namespace QuanTAlib;
|
||||
using QuanTAlib;
|
||||
|
||||
public class DwmaIndicator : IndicatorBase
|
||||
{
|
||||
@@ -11,7 +11,7 @@ public class DwmaIndicator : IndicatorBase
|
||||
public override string ShortName => $"DWMA {Period} : {SourceName}";
|
||||
|
||||
|
||||
public DwmaIndicator()
|
||||
public DwmaIndicator() : base()
|
||||
{
|
||||
Name = "DWMA - Double Weighted Moving Average";
|
||||
}
|
||||
@@ -19,5 +19,6 @@ public class DwmaIndicator : IndicatorBase
|
||||
protected override void InitIndicator()
|
||||
{
|
||||
ma = new Dwma(Period);
|
||||
base.InitIndicator();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user