tests and cleanup

This commit is contained in:
Miha Kralj
2024-10-11 18:02:09 -07:00
parent 839313c9f2
commit cc45cebeb4
96 changed files with 3640 additions and 327 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ public class MedianIndicator : IndicatorBase
public MedianIndicator() : base()
{
Name = "MEDIAN - Median historical value";
Description = "Calculates the middle value of price data over a specified period, less affected by outliers than mean.";
}
protected override void InitIndicator()
@@ -20,4 +21,4 @@ public class MedianIndicator : IndicatorBase
MinHistoryDepths = med.WarmupPeriod;
base.InitIndicator();
}
}
}