sdev, psdev, alphavantage

This commit is contained in:
Miha Kralj
2022-11-06 17:20:57 -08:00
parent 32615af18b
commit 28025fbdd3
28 changed files with 1860 additions and 2545 deletions
+2 -2
View File
@@ -25,14 +25,14 @@ public class SDEV_chart : Indicator
public SDEV_chart()
{
this.SeparateWindow = true;
this.Name = "SDEV - Population Standard Deviation (Biased)";
this.Name = "SDEV - Sample Standard Deviation (Unbiased)";
this.Description = "SDEV description";
this.AddLineSeries("SDEV", Color.RoyalBlue, 3, LineStyle.Solid);
}
protected override void OnInit()
{
this.bars = new();
this.bars = new();
this.ShortName =
"SDEV (" + TBars.SelectStr(this.DataSource) + ", " + this.Period + ")";
this.indicator = new(source: bars.Select(this.DataSource),