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
@@ -13,6 +13,7 @@ public class CurvatureIndicator : IndicatorBase
public CurvatureIndicator()
{
Name = "CURVATURE - Rate of Change of Slope";
Description = "Measures the rate of change of the slope, indicating acceleration or deceleration in price movement.";
SeparateWindow = true;
}
@@ -21,4 +22,4 @@ public class CurvatureIndicator : IndicatorBase
curvature = new(Period);
MinHistoryDepths = curvature.WarmupPeriod;
}
}
}