corrections

This commit is contained in:
Miha Kralj
2024-10-13 17:18:31 -07:00
parent 2236f5f483
commit bbefc72d73
65 changed files with 669 additions and 1087 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ jobs:
- name: SonarCloud Scanner End - name: SonarCloud Scanner End
env: env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}" run: dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
Code_Coverage: Code_Coverage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+2
View File
@@ -21,6 +21,8 @@ namespace QuanTAlib
var onInitMethod = typeof(T).GetMethod("OnInit", BindingFlags.NonPublic | BindingFlags.Instance); var onInitMethod = typeof(T).GetMethod("OnInit", BindingFlags.NonPublic | BindingFlags.Instance);
Assert.NotNull(onInitMethod); Assert.NotNull(onInitMethod);
onInitMethod.Invoke(indicator, null); onInitMethod.Invoke(indicator, null);
var onUpdateMethod = typeof(T).GetMethod("OnUpdate", BindingFlags.NonPublic | BindingFlags.Instance);
Assert.NotNull(onUpdateMethod);
var field = typeof(T).GetField(fieldName, BindingFlags.NonPublic | BindingFlags.Instance); var field = typeof(T).GetField(fieldName, BindingFlags.NonPublic | BindingFlags.Instance);
Assert.NotNull(field); Assert.NotNull(field);
+3 -2
View File
@@ -1,9 +1,9 @@
//TODO: fails consistency test
namespace QuanTAlib; namespace QuanTAlib;
// https://efs.kb.esignal.com/hc/en-us/articles/6362791434395-2005-Mar-The-Secret-Behind-The-Filter-MedianAdaptiveFilter-efs // https://efs.kb.esignal.com/hc/en-us/articles/6362791434395-2005-Mar-The-Secret-Behind-The-Filter-MedianAdaptiveFilter-efs
//TODO Fix initial values
public class Maaf : AbstractBase public class Maaf : AbstractBase
{ {
private readonly CircularBuffer _priceBuffer; private readonly CircularBuffer _priceBuffer;
@@ -70,6 +70,7 @@ public class Maaf : AbstractBase
double smooth = (_priceBuffer[^1] + (2 * _priceBuffer[^2]) + (2 * _priceBuffer[^3]) + _priceBuffer[^4]) / 6; double smooth = (_priceBuffer[^1] + (2 * _priceBuffer[^2]) + (2 * _priceBuffer[^3]) + _priceBuffer[^4]) / 6;
_smoothBuffer.Add(smooth, Input.IsNew); _smoothBuffer.Add(smooth, Input.IsNew);
if (_smoothBuffer.Count < _period) if (_smoothBuffer.Count < _period)
{ {
return smooth; return smooth;
+59 -60
View File
@@ -1,73 +1,72 @@
using System; using System;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace QuanTAlib; namespace QuanTAlib
public class Zlema : AbstractBase
{ {
private readonly int _period; public class Zlema : AbstractBase
private CircularBuffer? _buffer;
private readonly double _alpha;
private readonly int _lag;
private double _lastZLEMA, _p_lastZLEMA;
public Zlema(int period)
{ {
if (period < 1) private readonly CircularBuffer _buffer;
private readonly int _lag;
private readonly Ema _ema;
private double _lastZLEMA, _p_lastZLEMA;
public Zlema(int period)
{ {
throw new ArgumentException("Period must be greater than or equal to 1.", nameof(period)); if (period < 1)
{
throw new ArgumentException("Period must be greater than or equal to 1.", nameof(period));
}
WarmupPeriod = period;
_lag = (int)(0.5 * (period - 1));
_buffer = new CircularBuffer(_lag + 1);
_ema = new Ema(period, useSma: false);
Name = $"Zlema({period})";
Init();
} }
_period = period;
WarmupPeriod = period;
_alpha = 2.0 / (_period + 1);
_lag = (_period - 1) / 2;
Name = $"Zlema({_period})";
Init();
}
public Zlema(object source, int period) : this(period) public Zlema(object source, int period) : this(period)
{
var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
}
public override void Init()
{
base.Init();
_buffer = new CircularBuffer(_period);
_lastZLEMA = 0;
}
protected override void ManageState(bool isNew)
{
if (isNew)
{ {
_lastValidValue = Input.Value; var pubEvent = source.GetType().GetEvent("Pub");
_index++; pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
_p_lastZLEMA = _lastZLEMA;
} }
else
public override void Init()
{ {
_lastZLEMA = _p_lastZLEMA; base.Init();
_buffer.Clear();
_ema.Init();
_lastZLEMA = 0;
_p_lastZLEMA = 0;
}
protected override void ManageState(bool isNew)
{
if (isNew)
{
_lastValidValue = Input.Value;
_index++;
_p_lastZLEMA = _lastZLEMA;
}
else
{
_lastZLEMA = _p_lastZLEMA;
}
}
protected override double Calculation()
{
ManageState(Input.IsNew);
_buffer.Add(Input.Value, Input.IsNew);
double lagValue = _buffer[Math.Max(0, _buffer.Count - 1 - _lag)];
double errorCorrection = 2 * Input.Value - lagValue;
double zlema = _ema.Calc(new TValue(errorCorrection, Input.IsNew)).Value;
_lastZLEMA = zlema;
IsHot = _index >= WarmupPeriod;
return zlema;
} }
} }
}
protected override double Calculation()
{
ManageState(Input.IsNew);
_buffer!.Add(Input.Value, Input.IsNew);
int lag = Math.Max(Math.Min((int)((_period - 1) * 0.5), _buffer.Count - 1), 0) + 1;
double zlValue = 2 * Input.Value - _buffer[_buffer.Count - lag];
// Dynamic alpha factor for index <= period
double k = (_index <= _period) ? (2.0 / (_index + 1)) : _alpha;
double zlema = (zlValue - _lastZLEMA) * k + _lastZLEMA;
_lastZLEMA = zlema;
IsHot = _index >= WarmupPeriod;
return zlema;
}
}
+35 -35
View File
@@ -55,41 +55,45 @@ public abstract class AbstractBase : ITValue
{ {
Input = input; Input = input;
Input2 = new(Time: Input.Time, Value: double.NaN, IsNew: Input.IsNew, IsHot: Input.IsHot); Input2 = new(Time: Input.Time, Value: double.NaN, IsNew: Input.IsNew, IsHot: Input.IsHot);
return HandleErrorCalculations(input.Value, input.Time, input.IsNew); return Process(input.Value, input.Time, input.IsNew);
} }
public virtual TValue Calc(TBar barInput) public virtual TValue Calc(TBar barInput)
{ {
BarInput = barInput; BarInput = barInput;
return HandleErrorCalculations(barInput.Close, barInput.Time, barInput.IsNew); return Process(barInput.Close, barInput.Time, barInput.IsNew);
} }
public virtual TValue Calc(TValue input1, TValue input2) public virtual TValue Calc(TValue input1, TValue input2)
{ {
Input = input1; Input = input1;
Input2 = input2; Input2 = input2;
return HandleErrorCalculations(input1.Value, input2.Value, input1.Time, input1.IsNew); return Process(input1.Value, input2.Value, input1.Time, input1.IsNew);
} }
public virtual TValue Calc(TBar input1, TBar input2) public virtual TValue Calc(TBar input1, TBar input2)
{ {
BarInput = input1; BarInput = input1;
BarInput2 = input2; BarInput2 = input2;
return HandleErrorCalculations(input1.Close, input2.Close, input1.Time, input1.IsNew); return Process(input1.Close, input2.Close, input1.Time, input1.IsNew);
}
public virtual TValue Calc(double value1, double value2)
{
DateTime now = DateTime.Now;
Input = new TValue(now, value1, true, true);
Input2 = new TValue(now, value2, true, true);
return Process(value1, value2, now, true);
} }
/// <summary> /// <summary>
/// Handles error calculations and invalid input values. /// Processes the input values, performs error checking, and calculates the indicator value.
/// </summary> /// </summary>
/// <param name="value">The primary input value to check.</param> /// <param name="value">The primary input value to process.</param>
/// <param name="time">The timestamp of the input.</param> /// <param name="time">The timestamp of the input.</param>
/// <param name="isNew">Indicates if the input is new.</param> /// <param name="isNew">Indicates if the input is new.</param>
/// <returns>A TValue object with the calculated or last valid value.</returns> /// <returns>A TValue object with the calculated or last valid value.</returns>
/// <remarks> protected virtual TValue Process(double value, DateTime time, bool isNew)
/// This method checks for NaN or infinity in the input value. If an invalid value is detected,
/// it returns the last valid value. Otherwise, it proceeds with the calculation.
/// </remarks>
protected virtual TValue HandleErrorCalculations(double value, DateTime time, bool isNew)
{ {
if (double.IsNaN(value) || double.IsInfinity(value)) if (double.IsNaN(value) || double.IsInfinity(value))
{ {
@@ -100,18 +104,14 @@ public abstract class AbstractBase : ITValue
} }
/// <summary> /// <summary>
/// Handles error calculations for inputs with two values. /// Processes two input values, performs error checking, and calculates the indicator value.
/// </summary> /// </summary>
/// <param name="value1">The first input value to check.</param> /// <param name="value1">The first input value to process.</param>
/// <param name="value2">The second input value to check.</param> /// <param name="value2">The second input value to process.</param>
/// <param name="time">The timestamp of the input.</param> /// <param name="time">The timestamp of the input.</param>
/// <param name="isNew">Indicates if the input is new.</param> /// <param name="isNew">Indicates if the input is new.</param>
/// <returns>A TValue object with the calculated or last valid value.</returns> /// <returns>A TValue object with the calculated or last valid value.</returns>
/// <remarks> protected virtual TValue Process(double value1, double value2, DateTime time, bool isNew)
/// This method checks for NaN or infinity in both input values. If any invalid value is detected,
/// it returns the last valid value. Otherwise, it proceeds with the calculation.
/// </remarks>
protected virtual TValue HandleErrorCalculations(double value1, double value2, DateTime time, bool isNew)
{ {
if (double.IsNaN(value1) || double.IsInfinity(value1) || if (double.IsNaN(value1) || double.IsInfinity(value1) ||
double.IsNaN(value2) || double.IsInfinity(value2)) double.IsNaN(value2) || double.IsInfinity(value2))
@@ -121,7 +121,21 @@ public abstract class AbstractBase : ITValue
this.Value = Calculation(); this.Value = Calculation();
return Process(new TValue(Time: time, Value: this.Value, IsNew: isNew, IsHot: this.IsHot)); return Process(new TValue(Time: time, Value: this.Value, IsNew: isNew, IsHot: this.IsHot));
} }
/// <summary>
/// Processes the calculated value, updates the indicator's own state,
/// and publishes the result through an event.
/// </summary>
/// <param name="value">The calculated TValue to process.</param>
/// <returns>The processed TValue.</returns>
protected virtual TValue Process(TValue value)
{
this.Time = value.Time;
this.Value = value.Value;
this.IsNew = value.IsNew;
this.IsHot = value.IsHot;
Pub?.Invoke(this, new ValueEventArgs(value));
return value;
}
/// <summary> /// <summary>
/// Retrieves the last valid calculated value. /// Retrieves the last valid calculated value.
/// </summary> /// </summary>
@@ -143,19 +157,5 @@ public abstract class AbstractBase : ITValue
/// <returns>The calculated indicator value.</returns> /// <returns>The calculated indicator value.</returns>
protected abstract double Calculation(); protected abstract double Calculation();
/// <summary>
/// Processes the calculated value, updates the indicator's own state,
/// and publishes the result through an event.
/// </summary>
/// <param name="value">The calculated TValue to process.</param>
/// <returns>The processed TValue.</returns>
protected virtual TValue Process(TValue value)
{
this.Time = value.Time;
this.Value = value.Value;
this.IsNew = value.IsNew;
this.IsHot = value.IsHot;
Pub?.Invoke(this, new ValueEventArgs(value));
return value;
}
} }
+9 -59
View File
@@ -1,27 +1,11 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Huber Loss calculator that combines the best properties of L2 squared loss for normal data
/// and L1 absolute loss for outliers.
/// </summary>
/// <remarks>
/// The Huberloss class calculates the Huber Loss using circular buffers
/// to efficiently manage the actual and predicted data points within the specified period.
/// </remarks>
public class Huberloss : AbstractBase public class Huberloss : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
private readonly double _delta; private readonly double _delta;
/// <summary>
/// Initializes a new instance of the Huberloss class with the specified period and delta.
/// </summary>
/// <param name="period">The period over which to calculate the Huber Loss.</param>
/// <param name="delta">The threshold at which to switch from squared to linear loss.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1 or delta is less than or equal to 0.
/// </exception>
public Huberloss(int period, double delta = 1.0) public Huberloss(int period, double delta = 1.0)
{ {
if (period < 1) if (period < 1)
@@ -40,20 +24,12 @@ public class Huberloss : AbstractBase
Init(); Init();
} }
/// <summary> public Huberloss(object source, int period, double delta = 1.0) : this(period, delta)
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Huberloss(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Huberloss instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -61,10 +37,6 @@ public class Huberloss : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Huberloss instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -74,18 +46,6 @@ public class Huberloss : AbstractBase
} }
} }
/// <summary>
/// Performs the Huber Loss calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Huber Loss value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Huber Loss using the formula:
/// L(a, p) = 0.5 * (a - p)^2 for |a - p| <= delta
/// L(a, p) = delta * |a - p| - 0.5 * delta^2 for |a - p| > delta
/// where a is the actual value, p is the predicted value, and delta is the threshold.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -96,7 +56,7 @@ public class Huberloss : AbstractBase
double predicted = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value; double predicted = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value;
_predictedBuffer.Add(predicted, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double huberLoss = 0; double huberloss = 0;
if (_actualBuffer.Count > 0) if (_actualBuffer.Count > 0)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
@@ -105,34 +65,24 @@ public class Huberloss : AbstractBase
double sumLoss = 0; double sumLoss = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
double error = Math.Abs(actualValues[i] - predictedValues[i]); double error = actualValues[i] - predictedValues[i];
if (error <= _delta) double absError = Math.Abs(error);
if (absError <= _delta)
{ {
sumLoss += 0.5 * error * error; sumLoss += 0.5 * error * error;
} }
else else
{ {
sumLoss += _delta * error - 0.5 * _delta * _delta; sumLoss += _delta * (absError - 0.5 * _delta);
} }
} }
huberLoss = sumLoss / _actualBuffer.Count; huberloss = sumLoss / _actualBuffer.Count;
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return huberLoss; return huberloss;
} }
/// <summary>
/// Calculates the Huber Loss for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Huber Loss.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+3 -54
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Absolute Error calculator that measures the average absolute difference
/// between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Mae class calculates the Mean Absolute Error using circular buffers
/// to efficiently manage the actual and predicted data points within the specified period.
/// </remarks>
public class Mae : AbstractBase public class Mae : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Mae class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Absolute Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Mae(int period) public Mae(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Mae : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mae class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Error.</param>
public Mae(object source, int period) : this(period) public Mae(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Mae instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Mae : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Mae instance based on whether a new value is being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current input is a new value.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Mae : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Absolute Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Absolute Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Absolute Error using the formula:
/// MAE = sum(|actual - predicted|) / n
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// If Input2.Value is NaN, it uses the average of actual values as the predicted value.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -95,29 +56,17 @@ public class Mae : AbstractBase
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double sumOfAbsoluteDifferences = 0; double sumAbsoluteError = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
sumOfAbsoluteDifferences += Math.Abs(actualValues[i] - predictedValues[i]); sumAbsoluteError += Math.Abs(actualValues[i] - predictedValues[i]);
} }
mae = sumOfAbsoluteDifferences / _actualBuffer.Count; mae = sumAbsoluteError / _actualBuffer.Count;
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mae; return mae;
} }
/// <summary>
/// Calculates the Mean Absolute Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Absolute Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+3 -60
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Absolute Percentage Deviation calculator that measures the average absolute percentage difference
/// between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Mapd class calculates the Mean Absolute Percentage Deviation using circular buffers
/// to efficiently manage the actual and predicted data points within the specified period.
/// </remarks>
public class Mapd : AbstractBase public class Mapd : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Mapd class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Deviation.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Mapd(int period) public Mapd(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Mapd : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mapd class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Deviation.</param>
public Mapd(object source, int period) : this(period) public Mapd(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Mapd instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Mapd : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Mapd instance based on whether a new value is being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current input is a new value.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Mapd : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Absolute Percentage Deviation calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Absolute Percentage Deviation value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Absolute Percentage Deviation using the formula:
/// MAPD = (sum(|actual - predicted| / |actual|) / n) * 100
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// If there's only one value in the buffer or if any actual value is zero, those values are excluded from the calculation.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -95,38 +56,20 @@ public class Mapd : AbstractBase
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double sumOfAbsolutePercentageDeviations = 0; double sumAbsolutePercentageDeviation = 0;
int validCount = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
if (actualValues[i] != 0) if (actualValues[i] != 0)
{ {
sumOfAbsolutePercentageDeviations += Math.Abs((actualValues[i] - predictedValues[i]) / actualValues[i]); sumAbsolutePercentageDeviation += Math.Abs((actualValues[i] - predictedValues[i]) / actualValues[i]);
validCount++;
} }
} }
if (validCount > 0) mapd = sumAbsolutePercentageDeviation / _actualBuffer.Count;
{
mapd = (sumOfAbsolutePercentageDeviations / validCount) * 100;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mapd; return mapd;
} }
/// <summary>
/// Calculates the Mean Absolute Percentage Deviation for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Absolute Percentage Deviation.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+1 -59
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Absolute Percentage Error calculator that measures the average absolute percentage difference
/// between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Mape class calculates the Mean Absolute Percentage Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Mape : AbstractBase public class Mape : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Mape class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Mape(int period) public Mape(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Mape : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Mape(object source, int period) : this(period) public Mape(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Mape instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Mape : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Mape instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Mape : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Absolute Percentage Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Absolute Percentage Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Absolute Percentage Error using the formula:
/// MAPE = (sum(|actual - predicted| / |actual|) / n) * 100
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// If any actual value is zero, it is excluded from the calculation to avoid division by zero.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -96,37 +57,18 @@ public class Mape : AbstractBase
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double sumAbsolutePercentageError = 0; double sumAbsolutePercentageError = 0;
int validCount = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
if (actualValues[i] != 0) if (actualValues[i] != 0)
{ {
sumAbsolutePercentageError += Math.Abs((actualValues[i] - predictedValues[i]) / actualValues[i]); sumAbsolutePercentageError += Math.Abs((actualValues[i] - predictedValues[i]) / actualValues[i]);
validCount++;
} }
} }
if (validCount > 0) mape = sumAbsolutePercentageError / _actualBuffer.Count;
{
mape = (sumAbsolutePercentageError / validCount) * 100;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mape; return mape;
} }
/// <summary>
/// Calculates the Mean Absolute Percentage Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Absolute Percentage Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+59 -69
View File
@@ -1,45 +1,40 @@
using System;
namespace QuanTAlib; namespace QuanTAlib;
/// <summary> /// <summary>
/// Represents a Mean Absolute Scaled Error calculator that measures the ratio of the mean absolute error /// Represents the Mean Absolute Scaled Error (MASE) calculation.
/// of the forecast values to the mean absolute error of the naive forecast.
/// </summary> /// </summary>
/// <remarks>
/// The Mase class calculates the Mean Absolute Scaled Error using circular buffers
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Mase : AbstractBase public class Mase : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _forecastBuffer; private readonly CircularBuffer _predictedBuffer;
private readonly int _period; private readonly CircularBuffer _naiveBuffer;
/// <summary> /// <summary>
/// Initializes a new instance of the Mase class with the specified period. /// Initializes a new instance of the Mase class.
/// </summary> /// </summary>
/// <param name="period">The period over which to calculate the Mean Absolute Scaled Error.</param> /// <param name="period">The period for MASE calculation.</param>
/// <exception cref="ArgumentOutOfRangeException"> /// <exception cref="ArgumentOutOfRangeException">Thrown when period is less than 1.</exception>
/// Thrown when period is less than 3.
/// </exception>
public Mase(int period) public Mase(int period)
{ {
if (period < 3) if (period < 1)
{ {
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 3."); throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
} }
_period = period;
WarmupPeriod = period; WarmupPeriod = period;
_actualBuffer = new CircularBuffer(period); _actualBuffer = new CircularBuffer(period);
_forecastBuffer = new CircularBuffer(period); _predictedBuffer = new CircularBuffer(period);
_naiveBuffer = new CircularBuffer(period);
Name = $"Mase(period={period})"; Name = $"Mase(period={period})";
Init(); Init();
} }
/// <summary> /// <summary>
/// Initializes a new instance of the Mase class with the specified source and period. /// Initializes a new instance of the Mase class with a source object.
/// </summary> /// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param> /// <param name="source">The source object for event subscription.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Scaled Error.</param> /// <param name="period">The period for MASE calculation.</param>
public Mase(object source, int period) : this(period) public Mase(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
@@ -47,19 +42,20 @@ public class Mase : AbstractBase
} }
/// <summary> /// <summary>
/// Initializes the Mase instance by clearing the buffers. /// Initializes the Mase instance.
/// </summary> /// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
_actualBuffer.Clear(); _actualBuffer.Clear();
_forecastBuffer.Clear(); _predictedBuffer.Clear();
_naiveBuffer.Clear();
} }
/// <summary> /// <summary>
/// Manages the state of the Mase instance based on whether new values are being processed. /// Manages the state of the Mase instance.
/// </summary> /// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param> /// <param name="isNew">Indicates if the input is new.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -70,17 +66,9 @@ public class Mase : AbstractBase
} }
/// <summary> /// <summary>
/// Performs the Mean Absolute Scaled Error calculation for the current period. /// Performs the MASE calculation.
/// </summary> /// </summary>
/// <returns> /// <returns>The calculated MASE value.</returns>
/// The calculated Mean Absolute Scaled Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Absolute Scaled Error using the formula:
/// MASE = mean(|actual - forecast|) / mean(|actual[t] - actual[t-1]|)
/// where actual is each actual value and forecast is each forecast value.
/// If there are fewer than 3 values in the buffers, the method returns 0.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -88,49 +76,51 @@ public class Mase : AbstractBase
double actual = Input.Value; double actual = Input.Value;
_actualBuffer.Add(actual, Input.IsNew); _actualBuffer.Add(actual, Input.IsNew);
double forecast = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value; double predicted = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value;
_forecastBuffer.Add(forecast, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double mase = 0; if (_actualBuffer.Count > 1)
if (_actualBuffer.Count >= 3)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); _naiveBuffer.Add(_actualBuffer.GetSpan()[^2], Input.IsNew);
var forecastValues = _forecastBuffer.GetSpan().ToArray();
double sumAbsoluteError = 0;
double sumAbsoluteNaiveError = 0;
int count = Math.Min(_actualBuffer.Count, _period);
for (int i = 1; i < count; i++)
{
sumAbsoluteError += Math.Abs(actualValues[i] - forecastValues[i]);
sumAbsoluteNaiveError += Math.Abs(actualValues[i] - actualValues[i - 1]);
}
double meanAbsoluteError = sumAbsoluteError / (count - 1);
double meanAbsoluteNaiveError = sumAbsoluteNaiveError / (count - 1);
if (meanAbsoluteNaiveError != 0)
{
mase = meanAbsoluteError / meanAbsoluteNaiveError;
}
} }
double mase = CalculateMase();
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mase; return mase;
} }
/// <summary> private double CalculateMase()
/// Calculates the Mean Absolute Scaled Error for the given actual and forecast values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="forecast">The forecast value.</param>
/// <returns>The calculated Mean Absolute Scaled Error.</returns>
public double Calc(double actual, double forecast)
{ {
Input = new TValue(DateTime.Now, actual); if (_actualBuffer.Count <= 1) return 0;
Input2 = new TValue(DateTime.Now, forecast);
return Calculation(); ReadOnlySpan<double> actualValues = _actualBuffer.GetSpan();
ReadOnlySpan<double> predictedValues = _predictedBuffer.GetSpan();
ReadOnlySpan<double> naiveValues = _naiveBuffer.GetSpan();
double sumAbsoluteError = CalculateSumAbsoluteError(actualValues, predictedValues);
double _naiveForecastError = CalculateNaiveForecastError(actualValues, naiveValues);
return _naiveForecastError != 0 ? (sumAbsoluteError / _actualBuffer.Count) / _naiveForecastError : double.PositiveInfinity;
}
private static double CalculateSumAbsoluteError(ReadOnlySpan<double> actualValues, ReadOnlySpan<double> predictedValues)
{
double sum = 0;
for (int i = 0; i < actualValues.Length; i++)
{
sum += Math.Abs(actualValues[i] - predictedValues[i]);
}
return sum;
}
private static double CalculateNaiveForecastError(ReadOnlySpan<double> actualValues, ReadOnlySpan<double> naiveValues)
{
double sum = 0;
for (int i = 1; i < actualValues.Length; i++)
{
sum += Math.Abs(actualValues[i] - naiveValues[i - 1]);
}
return sum / (actualValues.Length - 1);
} }
} }
+17 -79
View File
@@ -1,65 +1,36 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Directional Accuracy calculator that measures the average accuracy
/// of predicted directional changes compared to actual directional changes.
/// </summary>
/// <remarks>
/// The Mda class calculates the Mean Directional Accuracy using a circular buffer
/// to efficiently manage the data points within the specified period.
/// Mean Directional Accuracy is useful in financial analysis for evaluating the performance
/// of forecasting models in predicting the direction of price movements.
/// </remarks>
public class Mda : AbstractBase public class Mda : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _forecastBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Mda class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Directional Accuracy.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 2.
/// </exception>
public Mda(int period) public Mda(int period)
{ {
if (period < 2) if (period < 1)
{ {
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 2."); throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
} }
WarmupPeriod = 1; WarmupPeriod = period;
_actualBuffer = new CircularBuffer(period); _actualBuffer = new CircularBuffer(period);
_forecastBuffer = new CircularBuffer(period); _predictedBuffer = new CircularBuffer(period);
Name = $"Mda(period={period})"; Name = $"Mda(period={period})";
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mda class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Directional Accuracy.</param>
public Mda(object source, int period) : this(period) public Mda(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Mda instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
_actualBuffer.Clear(); _actualBuffer.Clear();
_forecastBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Mda instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -69,20 +40,6 @@ public class Mda : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Directional Accuracy calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Directional Accuracy value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Directional Accuracy using the formula:
/// MDA = (number of correct directional predictions / total number of predictions) * 100
/// A correct directional prediction is when the sign of the actual change matches
/// the sign of the predicted change.
/// The result is expressed as a percentage, where 100% indicates perfect directional accuracy
/// and 50% indicates performance no better than random guessing.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -90,46 +47,27 @@ public class Mda : AbstractBase
double actual = Input.Value; double actual = Input.Value;
_actualBuffer.Add(actual, Input.IsNew); _actualBuffer.Add(actual, Input.IsNew);
double forecast = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value; double predicted = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value;
_forecastBuffer.Add(forecast, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double mda = 0; double mda = 0;
if (_actualBuffer.Count > 1) if (_actualBuffer.Count > 0)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var forecastValues = _forecastBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
int correctPredictions = 0; double sumDirectionalAccuracy = 0;
int totalPredictions = actualValues.Length - 1; for (int i = 1; i < _actualBuffer.Count; i++)
for (int i = 1; i < actualValues.Length; i++)
{ {
double actualChange = actualValues[i] - actualValues[i - 1]; double actualDirection = Math.Sign(actualValues[i] - actualValues[i - 1]);
double forecastChange = forecastValues[i] - actualValues[i - 1]; double predictedDirection = Math.Sign(predictedValues[i] - predictedValues[i - 1]);
sumDirectionalAccuracy += (actualDirection == predictedDirection) ? 1 : 0;
if ((actualChange >= 0 && forecastChange >= 0) || (actualChange < 0 && forecastChange < 0))
{
correctPredictions++;
}
} }
mda = (double)correctPredictions / totalPredictions * 100; mda = sumDirectionalAccuracy / (_actualBuffer.Count - 1);
} }
IsHot = _actualBuffer.Count > 1; // MDA calc is valid from bar 2 IsHot = _index >= WarmupPeriod;
return mda; return mda;
} }
/// <summary>
/// Calculates the Mean Directional Accuracy for the given actual and forecast values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="forecast">The forecast value.</param>
/// <returns>The calculated Mean Directional Accuracy.</returns>
public double Calc(double actual, double forecast)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, forecast);
return Calculation();
}
} }
-51
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Error calculator that measures the average difference
/// between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Me class calculates the Mean Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Me : AbstractBase public class Me : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Me class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Me(int period) public Me(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Me : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Me(object source, int period) : this(period) public Me(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Me instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Me : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Me instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,17 +40,6 @@ public class Me : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Error using the formula:
/// ME = sum(actual - predicted) / n
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -106,17 +68,4 @@ public class Me : AbstractBase
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return me; return me;
} }
/// <summary>
/// Calculates the Mean Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+1 -59
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Percentage Error calculator that measures the average percentage difference
/// between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Mpe class calculates the Mean Percentage Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Mpe : AbstractBase public class Mpe : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Mpe class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Percentage Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Mpe(int period) public Mpe(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Mpe : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Mpe(object source, int period) : this(period) public Mpe(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Mpe instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Mpe : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Mpe instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Mpe : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Percentage Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Percentage Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Percentage Error using the formula:
/// MPE = (sum((actual - predicted) / actual) / n) * 100
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// If any actual value is zero, it is excluded from the calculation to avoid division by zero.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -96,37 +57,18 @@ public class Mpe : AbstractBase
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double sumPercentageError = 0; double sumPercentageError = 0;
int validCount = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
if (actualValues[i] != 0) if (actualValues[i] != 0)
{ {
sumPercentageError += (actualValues[i] - predictedValues[i]) / actualValues[i]; sumPercentageError += (actualValues[i] - predictedValues[i]) / actualValues[i];
validCount++;
} }
} }
if (validCount > 0) mpe = sumPercentageError / _actualBuffer.Count;
{
mpe = (sumPercentageError / validCount) * 100;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mpe; return mpe;
} }
/// <summary>
/// Calculates the Mean Percentage Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Percentage Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+3 -17
View File
@@ -34,16 +34,16 @@ public class Mse : AbstractBase
} }
/// <summary> /// <summary>
/// Initializes a new instance of the Mape class with the specified source and period. /// Initializes a new instance of the Mse class with the specified source and period.
/// </summary> /// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param> /// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param> /// <param name="period">The period over which to calculate the Mean Squared Error.</param>
public Mse(object source, int period) : this(period) public Mse(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary> /// <summary>
/// Initializes the Mse instance by clearing the buffers. /// Initializes the Mse instance by clearing the buffers.
/// </summary> /// </summary>
@@ -54,7 +54,6 @@ public class Mse : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary> /// <summary>
/// Manages the state of the Mse instance based on whether new values are being processed. /// Manages the state of the Mse instance based on whether new values are being processed.
/// </summary> /// </summary>
@@ -108,17 +107,4 @@ public class Mse : AbstractBase
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return mse; return mse;
} }
/// <summary>
/// Calculates the Mean Squared Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Squared Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
_lastValidValue = predicted;
return Calculation();
}
} }
+2 -54
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Mean Squared Logarithmic Error calculator that measures the average of the squares
/// of the differences between the logarithms of actual values and predicted values.
/// </summary>
/// <remarks>
/// The Msle class calculates the Mean Squared Logarithmic Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Msle : AbstractBase public class Msle : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Msle class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Mean Squared Logarithmic Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Msle(int period) public Msle(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Msle : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Msle(object source, int period) : this(period) public Msle(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Msle instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Msle : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Msle instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Msle : AbstractBase
} }
} }
/// <summary>
/// Performs the Mean Squared Logarithmic Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Mean Squared Logarithmic Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Mean Squared Logarithmic Error using the formula:
/// MSLE = sum((log(actual + 1) - log(predicted + 1))^2) / n
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// We add 1 to both actual and predicted values to avoid taking the log of zero.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -100,8 +61,8 @@ public class Msle : AbstractBase
{ {
double logActual = Math.Log(actualValues[i] + 1); double logActual = Math.Log(actualValues[i] + 1);
double logPredicted = Math.Log(predictedValues[i] + 1); double logPredicted = Math.Log(predictedValues[i] + 1);
double logError = logActual - logPredicted; double error = logActual - logPredicted;
sumSquaredLogError += logError * logError; sumSquaredLogError += error * error;
} }
msle = sumSquaredLogError / _actualBuffer.Count; msle = sumSquaredLogError / _actualBuffer.Count;
@@ -110,17 +71,4 @@ public class Msle : AbstractBase
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return msle; return msle;
} }
/// <summary>
/// Calculates the Mean Squared Logarithmic Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Mean Squared Logarithmic Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+6 -62
View File
@@ -1,30 +1,15 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Relative Absolute Error calculator that measures the ratio of the sum of absolute errors
/// to the sum of absolute differences between actual values and the mean of actual values.
/// </summary>
/// <remarks>
/// The Rae class calculates the Relative Absolute Error using circular buffers
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Rae : AbstractBase public class Rae : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Rae class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Relative Absolute Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 2.
/// </exception>
public Rae(int period) public Rae(int period)
{ {
if (period < 2) if (period < 1)
{ {
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 2."); throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
} }
WarmupPeriod = period; WarmupPeriod = period;
_actualBuffer = new CircularBuffer(period); _actualBuffer = new CircularBuffer(period);
@@ -33,20 +18,12 @@ public class Rae : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Rae(object source, int period) : this(period) public Rae(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Rae instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Rae : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Rae instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,17 +40,6 @@ public class Rae : AbstractBase
} }
} }
/// <summary>
/// Performs the Relative Absolute Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Relative Absolute Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Relative Absolute Error using the formula:
/// RAE = sum(|actual - predicted|) / sum(|actual - mean(actual)|)
/// where actual is each actual value, predicted is each predicted value, and mean(actual) is the average of actual values.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -89,41 +51,23 @@ public class Rae : AbstractBase
_predictedBuffer.Add(predicted, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double rae = 0; double rae = 0;
if (_actualBuffer.Count >= 2) if (_actualBuffer.Count > 0)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double actualMean = actualValues.Average();
double sumAbsoluteError = 0; double sumAbsoluteError = 0;
double sumAbsoluteDifferenceFromMean = 0; double sumAbsoluteActual = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
sumAbsoluteError += Math.Abs(actualValues[i] - predictedValues[i]); sumAbsoluteError += Math.Abs(actualValues[i] - predictedValues[i]);
sumAbsoluteDifferenceFromMean += Math.Abs(actualValues[i] - actualMean); sumAbsoluteActual += Math.Abs(actualValues[i]);
} }
if (sumAbsoluteDifferenceFromMean != 0) rae = sumAbsoluteError / sumAbsoluteActual;
{
rae = sumAbsoluteError / sumAbsoluteDifferenceFromMean;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return rae; return rae;
} }
/// <summary>
/// Calculates the Relative Absolute Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Relative Absolute Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+1 -51
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Root Mean Squared Error calculator that measures the square root of the average
/// of the squares of the differences between actual values and predicted values.
/// </summary>
/// <remarks>
/// The Rmse class calculates the Root Mean Squared Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Rmse : AbstractBase public class Rmse : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Rmse class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Root Mean Squared Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Rmse(int period) public Rmse(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,19 +18,12 @@ public class Rmse : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Rmse(object source, int period) : this(period) public Rmse(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Rmse instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -53,10 +31,6 @@ public class Rmse : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Rmse instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -66,17 +40,6 @@ public class Rmse : AbstractBase
} }
} }
/// <summary>
/// Performs the Root Mean Squared Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Root Mean Squared Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Root Mean Squared Error using the formula:
/// RMSE = sqrt(sum((actual - predicted)^2) / n)
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -106,17 +69,4 @@ public class Rmse : AbstractBase
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return rmse; return rmse;
} }
/// <summary>
/// Calculates the Root Mean Squared Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Root Mean Squared Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+2 -54
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Root Mean Squared Logarithmic Error calculator that measures the square root of the average
/// of the squares of the differences between the logarithms of actual values and predicted values.
/// </summary>
/// <remarks>
/// The Rmsle class calculates the Root Mean Squared Logarithmic Error using a circular buffer
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Rmsle : AbstractBase public class Rmsle : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Rmsle class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Root Mean Squared Logarithmic Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Rmsle(int period) public Rmsle(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Rmsle : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Rmsle(object source, int period) : this(period) public Rmsle(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Rmsle instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Rmsle : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Rmsle instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,18 +40,6 @@ public class Rmsle : AbstractBase
} }
} }
/// <summary>
/// Performs the Root Mean Squared Logarithmic Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Root Mean Squared Logarithmic Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Root Mean Squared Logarithmic Error using the formula:
/// RMSLE = sqrt(sum((log(actual + 1) - log(predicted + 1))^2) / n)
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// We add 1 to both actual and predicted values to avoid taking the log of zero.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -100,8 +61,8 @@ public class Rmsle : AbstractBase
{ {
double logActual = Math.Log(actualValues[i] + 1); double logActual = Math.Log(actualValues[i] + 1);
double logPredicted = Math.Log(predictedValues[i] + 1); double logPredicted = Math.Log(predictedValues[i] + 1);
double logError = logActual - logPredicted; double error = logActual - logPredicted;
sumSquaredLogError += logError * logError; sumSquaredLogError += error * error;
} }
rmsle = Math.Sqrt(sumSquaredLogError / _actualBuffer.Count); rmsle = Math.Sqrt(sumSquaredLogError / _actualBuffer.Count);
@@ -110,17 +71,4 @@ public class Rmsle : AbstractBase
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return rmsle; return rmsle;
} }
/// <summary>
/// Calculates the Root Mean Squared Logarithmic Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Root Mean Squared Logarithmic Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+8 -63
View File
@@ -1,30 +1,15 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Relative Squared Error calculator that measures the ratio of the sum of squared errors
/// to the sum of squared differences between actual values and the mean of actual values.
/// </summary>
/// <remarks>
/// The Rse class calculates the Relative Squared Error using circular buffers
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Rse : AbstractBase public class Rse : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Rse class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Relative Squared Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 2.
/// </exception>
public Rse(int period) public Rse(int period)
{ {
if (period < 2) if (period < 1)
{ {
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 2."); throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
} }
WarmupPeriod = period; WarmupPeriod = period;
_actualBuffer = new CircularBuffer(period); _actualBuffer = new CircularBuffer(period);
@@ -33,20 +18,12 @@ public class Rse : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Rse(object source, int period) : this(period) public Rse(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Rse instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Rse : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Rse instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,17 +40,6 @@ public class Rse : AbstractBase
} }
} }
/// <summary>
/// Performs the Relative Squared Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Relative Squared Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Relative Squared Error using the formula:
/// RSE = sum((actual - predicted)^2) / sum((actual - mean(actual))^2)
/// where actual is each actual value, predicted is each predicted value, and mean(actual) is the average of actual values.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -89,44 +51,27 @@ public class Rse : AbstractBase
_predictedBuffer.Add(predicted, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double rse = 0; double rse = 0;
if (_actualBuffer.Count >= 2) if (_actualBuffer.Count > 0)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double actualMean = actualValues.Average();
double sumSquaredError = 0; double sumSquaredError = 0;
double sumSquaredDifferenceFromMean = 0; double sumSquaredActual = 0;
double meanActual = actualValues.Average();
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
double error = actualValues[i] - predictedValues[i]; double error = actualValues[i] - predictedValues[i];
sumSquaredError += error * error; sumSquaredError += error * error;
double deviation = actualValues[i] - meanActual;
double differenceFromMean = actualValues[i] - actualMean; sumSquaredActual += deviation * deviation;
sumSquaredDifferenceFromMean += differenceFromMean * differenceFromMean;
} }
if (sumSquaredDifferenceFromMean != 0) rse = Math.Sqrt(sumSquaredError / sumSquaredActual);
{
rse = sumSquaredError / sumSquaredDifferenceFromMean;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return rse; return rse;
} }
/// <summary>
/// Calculates the Relative Squared Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Relative Squared Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+12 -64
View File
@@ -1,30 +1,15 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Coefficient of Determination (R-squared) calculator that measures the proportion of
/// the variance in the dependent variable that is predictable from the independent variable(s).
/// </summary>
/// <remarks>
/// The Rsquared class calculates the Coefficient of Determination using circular buffers
/// to efficiently manage the actual and predicted data points within the specified period.
/// </remarks>
public class Rsquared : AbstractBase public class Rsquared : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Rsquared class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Coefficient of Determination.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 2.
/// </exception>
public Rsquared(int period) public Rsquared(int period)
{ {
if (period < 2) if (period < 1)
{ {
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 2."); throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
} }
WarmupPeriod = period; WarmupPeriod = period;
_actualBuffer = new CircularBuffer(period); _actualBuffer = new CircularBuffer(period);
@@ -33,20 +18,12 @@ public class Rsquared : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Rsquared(object source, int period) : this(period) public Rsquared(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Rsquared instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Rsquared : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Rsquared instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,17 +40,6 @@ public class Rsquared : AbstractBase
} }
} }
/// <summary>
/// Performs the Coefficient of Determination calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Coefficient of Determination value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Coefficient of Determination using the formula:
/// R^2 = 1 - (SSres / SStot)
/// where SSres is the sum of squared residuals and SStot is the total sum of squares.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -89,44 +51,30 @@ public class Rsquared : AbstractBase
_predictedBuffer.Add(predicted, Input.IsNew); _predictedBuffer.Add(predicted, Input.IsNew);
double rsquared = 0; double rsquared = 0;
if (_actualBuffer.Count >= 2) if (_actualBuffer.Count > 0)
{ {
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double actualMean = actualValues.Average(); double meanActual = actualValues.Average();
double ssRes = 0; double sumSquaredTotal = 0;
double ssTot = 0; double sumSquaredResidual = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
{ {
double residual = actualValues[i] - predictedValues[i]; double deviation = actualValues[i] - meanActual;
ssRes += residual * residual; sumSquaredTotal += deviation * deviation;
double error = actualValues[i] - predictedValues[i];
double deviation = actualValues[i] - actualMean; sumSquaredResidual += error * error;
ssTot += deviation * deviation;
} }
if (ssTot != 0) if (sumSquaredTotal != 0)
{ {
rsquared = 1 - (ssRes / ssTot); rsquared = 1 - (sumSquaredResidual / sumSquaredTotal);
} }
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return rsquared; return rsquared;
} }
/// <summary>
/// Calculates the Coefficient of Determination for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Coefficient of Determination.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+3 -57
View File
@@ -1,25 +1,10 @@
namespace QuanTAlib; namespace QuanTAlib;
/// <summary>
/// Represents a Symmetric Mean Absolute Percentage Error calculator that measures the percentage difference
/// between actual and predicted values, using a symmetric formula to handle both positive and negative errors equally.
/// </summary>
/// <remarks>
/// The Smape class calculates the Symmetric Mean Absolute Percentage Error using circular buffers
/// to efficiently manage the data points within the specified period.
/// </remarks>
public class Smape : AbstractBase public class Smape : AbstractBase
{ {
private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _actualBuffer;
private readonly CircularBuffer _predictedBuffer; private readonly CircularBuffer _predictedBuffer;
/// <summary>
/// Initializes a new instance of the Smape class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the Symmetric Mean Absolute Percentage Error.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
public Smape(int period) public Smape(int period)
{ {
if (period < 1) if (period < 1)
@@ -33,20 +18,12 @@ public class Smape : AbstractBase
Init(); Init();
} }
/// <summary>
/// Initializes a new instance of the Mape class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for value updates.</param>
/// <param name="period">The period over which to calculate the Mean Absolute Percentage Error.</param>
public Smape(object source, int period) : this(period) public Smape(object source, int period) : this(period)
{ {
var pubEvent = source.GetType().GetEvent("Pub"); var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); pubEvent?.AddEventHandler(source, new ValueSignal(Sub));
} }
/// <summary>
/// Initializes the Smape instance by clearing the buffers.
/// </summary>
public override void Init() public override void Init()
{ {
base.Init(); base.Init();
@@ -54,10 +31,6 @@ public class Smape : AbstractBase
_predictedBuffer.Clear(); _predictedBuffer.Clear();
} }
/// <summary>
/// Manages the state of the Smape instance based on whether new values are being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current inputs are new values.</param>
protected override void ManageState(bool isNew) protected override void ManageState(bool isNew)
{ {
if (isNew) if (isNew)
@@ -67,17 +40,6 @@ public class Smape : AbstractBase
} }
} }
/// <summary>
/// Performs the Symmetric Mean Absolute Percentage Error calculation for the current period.
/// </summary>
/// <returns>
/// The calculated Symmetric Mean Absolute Percentage Error value for the current period.
/// </returns>
/// <remarks>
/// This method calculates the Symmetric Mean Absolute Percentage Error using the formula:
/// SMAPE = (100% / n) * sum(2 * |actual - predicted| / (|actual| + |predicted|))
/// where actual is each actual value, predicted is each predicted value, and n is the number of values.
/// </remarks>
protected override double Calculation() protected override double Calculation()
{ {
ManageState(Input.IsNew); ManageState(Input.IsNew);
@@ -94,7 +56,7 @@ public class Smape : AbstractBase
var actualValues = _actualBuffer.GetSpan().ToArray(); var actualValues = _actualBuffer.GetSpan().ToArray();
var predictedValues = _predictedBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray();
double sumSymmetricPercentageError = 0; double sumSymmetricAbsolutePercentageError = 0;
int validCount = 0; int validCount = 0;
for (int i = 0; i < _actualBuffer.Count; i++) for (int i = 0; i < _actualBuffer.Count; i++)
@@ -102,31 +64,15 @@ public class Smape : AbstractBase
double denominator = Math.Abs(actualValues[i]) + Math.Abs(predictedValues[i]); double denominator = Math.Abs(actualValues[i]) + Math.Abs(predictedValues[i]);
if (denominator != 0) if (denominator != 0)
{ {
sumSymmetricPercentageError += 2 * Math.Abs(actualValues[i] - predictedValues[i]) / denominator; sumSymmetricAbsolutePercentageError += Math.Abs(actualValues[i] - predictedValues[i]) / denominator;
validCount++; validCount++;
} }
} }
if (validCount > 0) smape = validCount > 0 ? (200 * sumSymmetricAbsolutePercentageError / validCount) : 0;
{
smape = (100.0 / validCount) * sumSymmetricPercentageError;
}
} }
IsHot = _index >= WarmupPeriod; IsHot = _index >= WarmupPeriod;
return smape; return smape;
} }
/// <summary>
/// Calculates the Symmetric Mean Absolute Percentage Error for the given actual and predicted values.
/// </summary>
/// <param name="actual">The actual value.</param>
/// <param name="predicted">The predicted value.</param>
/// <returns>The calculated Symmetric Mean Absolute Percentage Error.</returns>
public double Calc(double actual, double predicted)
{
Input = new TValue(DateTime.Now, actual);
Input2 = new TValue(DateTime.Now, predicted);
return Calculation();
}
} }
+11
View File
@@ -34,6 +34,8 @@ public class AfirmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Afirma? ma; private Afirma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
@@ -47,6 +49,7 @@ public class AfirmaIndicator : Indicator, IWatchlistIndicator
SourceName = Source.ToString(); SourceName = Source.ToString();
Name = "AFIRMA - Adaptive Finite Impulse Response Moving Average"; Name = "AFIRMA - Adaptive Finite Impulse Response Moving Average";
Description = "Adaptive Finite Impulse Response Moving Average with ARMA component"; Description = "Adaptive Finite Impulse Response Moving Average with ARMA component";
Series = new(name: $"AFIRMA {Taps}:{Periods}:{Window}", color: Color.Yellow, width: 2, style: LineStyle.Solid); Series = new(name: $"AFIRMA {Taps}:{Periods}:{Window}", color: Color.Yellow, width: 2, style: LineStyle.Solid);
AddLineSeries(Series); AddLineSeries(Series);
} }
@@ -63,9 +66,17 @@ public class AfirmaIndicator : Indicator, IWatchlistIndicator
TValue input = this.GetInputValue(args, Source); TValue input = this.GetInputValue(args, Source);
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
} }
public override string ShortName => $"AFIRMA {Taps}:{Periods}:{Window}:{SourceName}"; public override string ShortName => $"AFIRMA {Taps}:{Periods}:{Window}:{SourceName}";
public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+14 -3
View File
@@ -8,10 +8,10 @@ public class AlmaIndicator : Indicator, IWatchlistIndicator
[InputParameter("Period", sortIndex: 1, 1, 2000, 1, 0)] [InputParameter("Period", sortIndex: 1, 1, 2000, 1, 0)]
public int Period { get; set; } = 10; public int Period { get; set; } = 10;
[InputParameter("Offset", sortIndex: 2)] [InputParameter("Offset", sortIndex: 2, minimum: 0, maximum: 1, decimalPlaces: 2)]
public double Offset { get; set; } = 0.85; public double Offset { get; set; } = 0.85;
[InputParameter("Sigma", sortIndex: 3)] [InputParameter("Sigma", sortIndex: 3, minimum: 0, maximum: 100, decimalPlaces: 1)]
public double Sigma { get; set; } = 6.0; public double Sigma { get; set; } = 6.0;
[InputParameter("Data source", sortIndex: 4, variants: [ [InputParameter("Data source", sortIndex: 4, variants: [
@@ -28,12 +28,17 @@ public class AlmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Alma? ma; private Alma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Period; public int MinHistoryDepths => Period;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"ALMA {Period}:{Offset:F2}:{Sigma:F1}:{SourceName}";
public AlmaIndicator() public AlmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -58,7 +63,13 @@ public class AlmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"ALMA {Period}:{Offset:F2}:{Sigma:F0}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class DemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Dema? ma; private Dema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Period; public int MinHistoryDepths => Period;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"DEMA {Period}:{SourceName}";
public DemaIndicator() public DemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class DemaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"DEMA {Period}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -2
View File
@@ -25,12 +25,17 @@ public class DsmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Dsma? ma; private Dsma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths { get; private set; } public int MinHistoryDepths { get; private set; }
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"DSMA {Period}:{Scale:F2}:{SourceName}";
public DsmaIndicator() public DsmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -56,8 +61,13 @@ public class DsmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"DSMA {Period}:{Scale:F2}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -2
View File
@@ -22,12 +22,17 @@ public class DwmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Dwma? ma; private Dwma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Period; public int MinHistoryDepths => Period;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"DWMA {Period}:{SourceName}";
public DwmaIndicator() public DwmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,8 +57,13 @@ public class DwmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"DWMA {Period}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+17 -4
View File
@@ -6,9 +6,11 @@ namespace QuanTAlib;
public class EmaIndicator : Indicator, IWatchlistIndicator public class EmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Use SMA for warmup period", sortIndex: 2)]
public bool UseSMA { get; set; } = false;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 3, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
"High", SourceType.High, "High", SourceType.High,
"Low", SourceType.Low, "Low", SourceType.Low,
@@ -22,12 +24,17 @@ public class EmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Ema? ma; private Ema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"EMA {Periods}:{SourceName}";
public EmaIndicator() public EmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -41,7 +48,7 @@ public class EmaIndicator : Indicator, IWatchlistIndicator
protected override void OnInit() protected override void OnInit()
{ {
ma = new Ema(Periods); ma = new Ema(Periods, useSma: UseSMA);
SourceName = Source.ToString(); SourceName = Source.ToString();
base.OnInit(); base.OnInit();
} }
@@ -52,7 +59,13 @@ public class EmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"EMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class EpmaIndicator : Indicator, IWatchlistIndicator public class EpmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 2, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -22,12 +22,17 @@ public class EpmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Epma? ma; private Epma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"EPMA {Periods}:{SourceName}";
public EpmaIndicator() public EpmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class EpmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"EPMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class FramaIndicator : Indicator, IWatchlistIndicator public class FramaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 2, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 2, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 2, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -22,12 +22,17 @@ public class FramaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Frama? ma; private Frama? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods * 2; public int MinHistoryDepths => Periods * 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"FRAMA {Periods}:{SourceName}";
public FramaIndicator() public FramaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class FramaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"FRAMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class FwmaIndicator : Indicator, IWatchlistIndicator public class FwmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 2, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -22,12 +22,17 @@ public class FwmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Fwma? ma; private Fwma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"FWMA {Periods}:{SourceName}";
public FwmaIndicator() public FwmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class FwmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"FWMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -5
View File
@@ -6,10 +6,7 @@ namespace QuanTAlib;
public class GmaIndicator : Indicator, IWatchlistIndicator public class GmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Sigma", sortIndex: 2, 0.1, 10, 0.1, 1)]
public double Sigma { get; set; } = 1.0;
[InputParameter("Data source", sortIndex: 3, variants: [ [InputParameter("Data source", sortIndex: 3, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -25,12 +22,17 @@ public class GmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Gma? ma; private Gma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"GMA {Periods}:{SourceName}";
public GmaIndicator() public GmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -55,7 +57,13 @@ public class GmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"GMA {Periods}:{Sigma}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class HmaIndicator : Indicator, IWatchlistIndicator public class HmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 2, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 2, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 2, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -22,12 +22,17 @@ public class HmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Hma? ma; private Hma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods + (int)Math.Sqrt(Periods) - 1; public int MinHistoryDepths => Periods + (int)Math.Sqrt(Periods) - 1;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"HMA {Periods}:{SourceName}";
public HmaIndicator() public HmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class HmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"HMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -19,12 +19,17 @@ public class HtitIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Htit? ma; private Htit? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 12; // Based on WarmupPeriod in Htit public static int MinHistoryDepths => 12; // Based on WarmupPeriod in Htit
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"HTIT:{SourceName}";
public HtitIndicator() public HtitIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -49,7 +54,13 @@ public class HtitIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"HTIT:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+14 -3
View File
@@ -5,8 +5,8 @@ namespace QuanTAlib;
public class HwmaIndicator : Indicator, IWatchlistIndicator public class HwmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods (only when nA=nB=nC=0)", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("nA", sortIndex: 2, 0, 1, 0.01, 2)] [InputParameter("nA", sortIndex: 2, 0, 1, 0.01, 2)]
public double NA { get; set; } = 0; public double NA { get; set; } = 0;
@@ -31,12 +31,17 @@ public class HwmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Hwma? ma; private Hwma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"HWMA {Periods}:{NA}:{NB}:{NC}:{SourceName}";
public HwmaIndicator() public HwmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -68,7 +73,13 @@ public class HwmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"HWMA {Periods}:{NA}:{NB}:{NC}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+15 -7
View File
@@ -6,14 +6,11 @@ namespace QuanTAlib;
public class JmaIndicator : Indicator, IWatchlistIndicator public class JmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Phase", sortIndex: 2, -100, 100, 1, 0)] [InputParameter("Phase", sortIndex: 2, -100, 100, 1, 0)]
public double Phase { get; set; } = 0; public double Phase { get; set; } = 0;
[InputParameter("VShort", sortIndex: 3, 1, 100, 1, 0)]
public int VShort { get; set; } = 10;
[InputParameter("Data source", sortIndex: 4, variants: [ [InputParameter("Data source", sortIndex: 4, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
"High", SourceType.High, "High", SourceType.High,
@@ -28,12 +25,17 @@ public class JmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Jma? ma; private Jma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods * 2; public int MinHistoryDepths => Math.Max(65,Periods * 2);
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"JMA {Periods}:{Phase}:{SourceName}";
public JmaIndicator() public JmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -47,7 +49,7 @@ public class JmaIndicator : Indicator, IWatchlistIndicator
protected override void OnInit() protected override void OnInit()
{ {
ma = new Jma(Periods, Phase, VShort); ma = new Jma(Periods, Phase);
SourceName = Source.ToString(); SourceName = Source.ToString();
base.OnInit(); base.OnInit();
} }
@@ -58,7 +60,13 @@ public class JmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"JMA {Periods}:{Phase}:{VShort}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class KamaIndicator : Indicator, IWatchlistIndicator public class KamaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Periods { get; set; } = 10;
[InputParameter("Fast", sortIndex: 2, 1, 100, 1, 0)] [InputParameter("Fast", sortIndex: 2, 1, 100, 1, 0)]
public int Fast { get; set; } = 2; public int Fast { get; set; } = 2;
@@ -28,12 +28,17 @@ public class KamaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Kama? ma; private Kama? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"KAMA {Periods}:{Fast}:{Slow}:{SourceName}";
public KamaIndicator() public KamaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -58,7 +63,13 @@ public class KamaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"KAMA {Periods}:{Fast}:{Slow}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -22,12 +22,17 @@ public class LtmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Ltma? ma; private Ltma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 4; // Based on WarmupPeriod in Ltma public static int MinHistoryDepths => 4; // Based on WarmupPeriod in Ltma
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"LTMA {Gamma}:{SourceName}";
public LtmaIndicator() public LtmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class LtmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"LTMA {Gamma}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+13 -2
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class MaafIndicator : Indicator, IWatchlistIndicator public class MaafIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 3, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 3, 1000, 1, 0)]
public int Periods { get; set; } = 39; public int Periods { get; set; } = 10;
[InputParameter("Threshold", sortIndex: 2, 0.0001, 0.1, 0.0001, 4)] [InputParameter("Threshold", sortIndex: 2, 0.0001, 0.1, 0.0001, 4)]
public double Threshold { get; set; } = 0.002; public double Threshold { get; set; } = 0.002;
@@ -25,12 +25,17 @@ public class MaafIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Maaf? ma; private Maaf? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"MAAF {Periods}:{Threshold}:{SourceName}";
public MaafIndicator() public MaafIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -55,7 +60,13 @@ public class MaafIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"MAAF {Periods}:{Threshold}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+15 -2
View File
@@ -25,13 +25,18 @@ public class MamaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Mama? ma; private Mama? ma;
protected LineSeries? MamaSeries; protected LineSeries? MamaSeries;
protected LineSeries? FamaSeries; protected LineSeries? FamaSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 6; public static int MinHistoryDepths => 6;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"MAMA {FastLimit}:{SlowLimit}:{SourceName}";
public MamaIndicator() public MamaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -58,8 +63,16 @@ public class MamaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
MamaSeries!.SetValue(result.Value); MamaSeries!.SetValue(result.Value);
MamaSeries!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
FamaSeries!.SetValue(ma.Fama.Value); FamaSeries!.SetValue(ma.Fama.Value);
FamaSeries!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"MAMA {FastLimit}:{SlowLimit}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, MamaSeries!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.PaintSmoothCurve(args, FamaSeries!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -25,12 +25,17 @@ public class MgdiIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Mgdi? ma; private Mgdi? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"MGDI {Periods}:{KFactor}:{SourceName}";
public MgdiIndicator() public MgdiIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -55,7 +60,13 @@ public class MgdiIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"MGDI {Periods}:{KFactor}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class MmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Mma? ma; private Mma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"MMA {Periods}:{SourceName}";
public MmaIndicator() public MmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class MmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"MMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class PwmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Pwma? ma; private Pwma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"PWMA {Periods}:{SourceName}";
public PwmaIndicator() public PwmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class PwmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"PWMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -31,12 +31,17 @@ public class QemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Qema? ma; private Qema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => (int)((2 - Math.Min(Math.Min(K1, K2), Math.Min(K3, K4))) / Math.Min(Math.Min(K1, K2), Math.Min(K3, K4))); public int MinHistoryDepths => (int)((2 - Math.Min(Math.Min(K1, K2), Math.Min(K3, K4))) / Math.Min(Math.Min(K1, K2), Math.Min(K3, K4)));
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"QEMA {K1},{K2},{K3},{K4}:{SourceName}";
public QemaIndicator() public QemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -61,7 +66,13 @@ public class QemaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"QEMA {K1},{K2},{K3},{K4}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -25,12 +25,17 @@ public class RemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Rema? ma; private Rema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"REMA {Periods}:{Lambda}:{SourceName}";
public RemaIndicator() public RemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -55,7 +60,13 @@ public class RemaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"REMA {Periods}:{Lambda}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class RmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Rma? ma; private Rma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods * 2; public int MinHistoryDepths => Periods * 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"RMA {Periods}:{SourceName}";
public RmaIndicator() public RmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class RmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"RMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class SinemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Sinema? ma; private Sinema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"SINEMA {Periods}:{SourceName}";
public SinemaIndicator() public SinemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class SinemaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"SINEMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+19 -5
View File
@@ -6,7 +6,7 @@ namespace QuanTAlib;
public class SmaIndicator : Indicator, IWatchlistIndicator public class SmaIndicator : Indicator, IWatchlistIndicator
{ {
[InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)] [InputParameter("Periods", sortIndex: 1, 1, 1000, 1, 0)]
public int Periods { get; set; } = 14; public int Period { get; set; } = 14;
[InputParameter("Data source", sortIndex: 2, variants: [ [InputParameter("Data source", sortIndex: 2, variants: [
"Open", SourceType.Open, "Open", SourceType.Open,
@@ -22,10 +22,14 @@ public class SmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Sma? ma; private Sma? ma;
private Mape? error;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Period;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public SmaIndicator() public SmaIndicator()
@@ -35,13 +39,14 @@ public class SmaIndicator : Indicator, IWatchlistIndicator
SourceName = Source.ToString(); SourceName = Source.ToString();
Name = "SMA - Simple Moving Average"; Name = "SMA - Simple Moving Average";
Description = "Simple Moving Average"; Description = "Simple Moving Average";
Series = new(name: $"SMA {Periods}", color: Color.Yellow, width: 2, style: LineStyle.Solid); Series = new(name: $"SMA {Period}", color: Color.Yellow, width: 2, style: LineStyle.Solid);
AddLineSeries(Series); AddLineSeries(Series);
} }
protected override void OnInit() protected override void OnInit()
{ {
ma = new Sma(Periods); ma = new Sma(Period);
error = new(Period);
SourceName = Source.ToString(); SourceName = Source.ToString();
base.OnInit(); base.OnInit();
} }
@@ -50,9 +55,18 @@ public class SmaIndicator : Indicator, IWatchlistIndicator
{ {
TValue input = this.GetInputValue(args, Source); TValue input = this.GetInputValue(args, Source);
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
error!.Calc(input, result);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
} }
public override string ShortName => $"SMA {Periods}:{SourceName}"; public override string ShortName => $"SMA {Period}:{SourceName}";
public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, error!.Value.ToString());
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class SmmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Smma? ma; private Smma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"SMMA {Periods}:{SourceName}";
public SmmaIndicator() public SmmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class SmmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"SMMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -28,12 +28,17 @@ public class T3Indicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private T3? ma; private T3? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"T3 {Periods}:{VolumeFactor}:{UseSma}:{SourceName}";
public T3Indicator() public T3Indicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -58,7 +63,13 @@ public class T3Indicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"T3 {Periods}:{VolumeFactor}:{UseSma}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class TemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Tema? ma; private Tema? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => (int)Math.Ceiling(-Periods * Math.Log(1 - 0.85)); public int MinHistoryDepths => (int)Math.Ceiling(-Periods * Math.Log(1 - 0.85));
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"TEMA {Periods}:{SourceName}";
public TemaIndicator() public TemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class TemaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"TEMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class TrimaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Trima? ma; private Trima? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"TRIMA {Periods}:{SourceName}";
public TrimaIndicator() public TrimaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class TrimaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"TRIMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -28,12 +28,17 @@ public class VidyaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Vidya? ma; private Vidya? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => LongPeriod == 0 ? ShortPeriod * 4 : LongPeriod; public int MinHistoryDepths => LongPeriod == 0 ? ShortPeriod * 4 : LongPeriod;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"VIDYA {ShortPeriod}:{LongPeriod}:{Alpha}:{SourceName}";
public VidyaIndicator() public VidyaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -58,7 +63,13 @@ public class VidyaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"VIDYA {ShortPeriod}:{LongPeriod}:{Alpha}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+12 -1
View File
@@ -22,12 +22,17 @@ public class WmaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Wma? ma; private Wma? ma;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"WMA {Periods}:{SourceName}";
public WmaIndicator() public WmaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -52,7 +57,13 @@ public class WmaIndicator : Indicator, IWatchlistIndicator
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"WMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, Description);
}
} }
+16 -2
View File
@@ -22,12 +22,18 @@ public class ZlemaIndicator : Indicator, IWatchlistIndicator
])] ])]
public SourceType Source { get; set; } = SourceType.Close; public SourceType Source { get; set; } = SourceType.Close;
[InputParameter("Show cold values", sortIndex: 21)]
public bool ShowColdValues { get; set; } = true;
private Zlema? ma; private Zlema? ma;
private Huberloss? err;
protected LineSeries? Series; protected LineSeries? Series;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => Periods; public int MinHistoryDepths => Periods;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public override string ShortName => $"ZLEMA {Periods}:{SourceName}";
public ZlemaIndicator() public ZlemaIndicator()
{ {
OnBackGround = true; OnBackGround = true;
@@ -41,7 +47,8 @@ public class ZlemaIndicator : Indicator, IWatchlistIndicator
protected override void OnInit() protected override void OnInit()
{ {
ma = new Zlema(Periods); ma = new(Periods);
err = new(Periods);
SourceName = Source.ToString(); SourceName = Source.ToString();
base.OnInit(); base.OnInit();
} }
@@ -50,9 +57,16 @@ public class ZlemaIndicator : Indicator, IWatchlistIndicator
{ {
TValue input = this.GetInputValue(args, Source); TValue input = this.GetInputValue(args, Source);
TValue result = ma!.Calc(input); TValue result = ma!.Calc(input);
err!.Calc(input, result);
Series!.SetValue(result.Value); Series!.SetValue(result.Value);
Series!.SetMarker(0, Color.Transparent); //OnPaintChart draws the line, hidden here
} }
public override string ShortName => $"ZLEMA {Periods}:{SourceName}"; public override void OnPaintChart(PaintChartEventArgs args)
{
base.OnPaintChart(args);
this.PaintSmoothCurve(args, Series!, ma!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
this.DrawText(args, err!.Value.ToString());
}
} }
-2
View File
@@ -88,7 +88,6 @@ public static class IndicatorExtensions
if (allPoints.Count > 1) if (allPoints.Count > 1)
{ {
if (allPoints.Count < 2) return; if (allPoints.Count < 2) return;
using (Pen defaultPen = new(series.Color, series.Width) { DashStyle = ConvertLineStyleToDashStyle(series.Style) }) using (Pen defaultPen = new(series.Color, series.Width) { DashStyle = ConvertLineStyleToDashStyle(series.Style) })
@@ -140,7 +139,6 @@ public static class IndicatorExtensions
_ => DashStyle.Solid, _ => DashStyle.Solid,
}; };
} }
} }
+1 -1
View File
@@ -25,7 +25,7 @@ public class EntropyIndicator : Indicator, IWatchlistIndicator
private Entropy? entropy; private Entropy? entropy;
protected LineSeries? EntropySeries; protected LineSeries? EntropySeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public EntropyIndicator() public EntropyIndicator()
+1 -1
View File
@@ -28,7 +28,7 @@ public class MaxIndicator : Indicator, IWatchlistIndicator
private Max? ma; private Max? ma;
protected LineSeries? MaxSeries; protected LineSeries? MaxSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 0; public static int MinHistoryDepths => 0;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public MaxIndicator() public MaxIndicator()
+1 -1
View File
@@ -28,7 +28,7 @@ public class MinIndicator : Indicator, IWatchlistIndicator
private Min? mi; private Min? mi;
protected LineSeries? MinSeries; protected LineSeries? MinSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 0; public static int MinHistoryDepths => 0;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public MinIndicator() public MinIndicator()
+1 -1
View File
@@ -28,7 +28,7 @@ public class PercentileIndicator : Indicator, IWatchlistIndicator
private Percentile? percentile; private Percentile? percentile;
protected LineSeries? PercentileSeries; protected LineSeries? PercentileSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public PercentileIndicator() public PercentileIndicator()
+1 -1
View File
@@ -25,7 +25,7 @@ public class SkewIndicator : Indicator, IWatchlistIndicator
private Skew? skew; private Skew? skew;
protected LineSeries? SkewSeries; protected LineSeries? SkewSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 3; public static int MinHistoryDepths => 3;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public SkewIndicator() public SkewIndicator()
+1 -1
View File
@@ -28,7 +28,7 @@ public class StddevIndicator : Indicator, IWatchlistIndicator
private Stddev? stddev; private Stddev? stddev;
protected LineSeries? StddevSeries; protected LineSeries? StddevSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public StddevIndicator() public StddevIndicator()
+1 -1
View File
@@ -28,7 +28,7 @@ public class VarianceIndicator : Indicator, IWatchlistIndicator
private Variance? variance; private Variance? variance;
protected LineSeries? VarianceSeries; protected LineSeries? VarianceSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public VarianceIndicator() public VarianceIndicator()
+1 -1
View File
@@ -25,7 +25,7 @@ public class ZscoreIndicator : Indicator, IWatchlistIndicator
private Zscore? zScore; private Zscore? zScore;
protected LineSeries? ZscoreSeries; protected LineSeries? ZscoreSeries;
protected string? SourceName; protected string? SourceName;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public ZscoreIndicator() public ZscoreIndicator()
+1 -1
View File
@@ -10,7 +10,7 @@ public class AtrIndicator : Indicator, IWatchlistIndicator
private Atr? atr; private Atr? atr;
protected LineSeries? AtrSeries; protected LineSeries? AtrSeries;
public int MinHistoryDepths => 2; public static int MinHistoryDepths => 2;
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths; int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
public AtrIndicator() public AtrIndicator()
-1
View File
@@ -27,7 +27,6 @@ public class TestIndicator : Indicator, IWatchlistIndicator
private Sma? ma; private Sma? ma;
protected LineSeries? Series; protected LineSeries? Series;
//protected string? SourceName;
public int MinHistoryDepths { get; set; } public int MinHistoryDepths { get; set; }
int IWatchlistIndicator.MinHistoryDepths => 0; //QuanTAlib indicators generate value immediately int IWatchlistIndicator.MinHistoryDepths => 0; //QuanTAlib indicators generate value immediately