Files
QuanTAlib/quantower/Statistics/ZscoreIndicator.cs
T
2024-10-11 18:02:09 -07:00

27 lines
789 B
C#

using TradingPlatform.BusinessLayer;
namespace QuanTAlib;
public class ZScoreIndicator : IndicatorBase
{
[InputParameter("Period", sortIndex: 1, 2, 2000, 1, 0)]
public int Period { get; set; } = 20;
private Zscore? zScore;
protected override AbstractBase QuanTAlib => zScore!;
public override string ShortName => $"ZSCORE {Period} : {SourceName}";
public ZScoreIndicator() : base()
{
Name = "ZSCORE - Standard Score";
Description = "Measures how many standard deviations a price is from the mean, indicating overbought/oversold levels.";
SeparateWindow = true;
}
protected override void InitIndicator()
{
zScore = new(Period);
MinHistoryDepths = zScore.WarmupPeriod;
base.InitIndicator();
}
}