mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 18:48:05 +00:00
macos dev update
This commit is contained in:
@@ -11,7 +11,7 @@ public class HistoricalIndicator : Indicator, IWatchlistIndicator
|
||||
[InputParameter("Annualized", sortIndex: 2)]
|
||||
public bool IsAnnualized { get; set; } = true;
|
||||
|
||||
private Historical? historical;
|
||||
private Hv? historical;
|
||||
protected LineSeries? HvSeries;
|
||||
public int MinHistoryDepths => Periods;
|
||||
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
|
||||
@@ -28,7 +28,7 @@ public class HistoricalIndicator : Indicator, IWatchlistIndicator
|
||||
|
||||
protected override void OnInit()
|
||||
{
|
||||
historical = new Historical(Periods, IsAnnualized);
|
||||
historical = new(Periods, IsAnnualized);
|
||||
base.OnInit();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user