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 -2
View File
@@ -1,4 +1,3 @@
using TradingPlatform.BusinessLayer;
namespace QuanTAlib;
@@ -14,6 +13,7 @@ public class SkewIndicator : IndicatorBase
public SkewIndicator() : base()
{
Name = "SKEW - Skewness";
Description = "Measures the asymmetry of price distribution, indicating potential trend direction or reversal.";
SeparateWindow = true;
}
@@ -23,4 +23,4 @@ public class SkewIndicator : IndicatorBase
MinHistoryDepths = skew.WarmupPeriod;
base.InitIndicator();
}
}
}