mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-08 14:07:44 +00:00
459 lines
14 KiB
C#
459 lines
14 KiB
C#
using System.Runtime.CompilerServices;
|
||
using System.Runtime.InteropServices;
|
||
|
||
namespace QuanTAlib;
|
||
|
||
/// <summary>
|
||
/// STARCHANNEL: Stoller Average Range Channel
|
||
/// A volatility-based envelope using SMA as the middle line and ATR for band width.
|
||
/// Middle = SMA(source, period)
|
||
/// Upper = Middle + (multiplier × ATR(atrPeriod))
|
||
/// Lower = Middle - (multiplier × ATR(atrPeriod))
|
||
/// ATR uses RMA (Wilder's smoothing) with warmup compensation.
|
||
/// Supports separate SMA and ATR periods for traditional Stoller dual-period design.
|
||
/// </summary>
|
||
[SkipLocalsInit]
|
||
public sealed class Starchannel : ITValuePublisher
|
||
{
|
||
private readonly int _period;
|
||
private readonly int _atrPeriod;
|
||
private readonly double _multiplier;
|
||
private readonly double _atrAlpha;
|
||
private readonly RingBuffer _smaBuffer;
|
||
|
||
[StructLayout(LayoutKind.Auto)]
|
||
private record struct State(
|
||
double RawRma,
|
||
double E,
|
||
double PrevClose,
|
||
double LastValidClose,
|
||
double LastValidHigh,
|
||
double LastValidLow,
|
||
int Bars,
|
||
bool IsHot);
|
||
|
||
private State _state;
|
||
private State _p_state;
|
||
|
||
private readonly TBarPublishedHandler _barHandler;
|
||
|
||
private const double Epsilon = 1e-10;
|
||
|
||
public string Name { get; }
|
||
public int WarmupPeriod { get; }
|
||
public TValue Last { get; private set; }
|
||
public TValue Upper { get; private set; }
|
||
public TValue Lower { get; private set; }
|
||
public bool IsHot => _state.IsHot;
|
||
|
||
public event TValuePublishedHandler? Pub;
|
||
|
||
public Starchannel(int period = 20, double multiplier = 2.0, int atrPeriod = 0)
|
||
{
|
||
if (period < 1)
|
||
{
|
||
throw new ArgumentOutOfRangeException(nameof(period), "Period must be >= 1.");
|
||
}
|
||
|
||
if (multiplier <= 0.0)
|
||
{
|
||
throw new ArgumentOutOfRangeException(nameof(multiplier), "Multiplier must be > 0.");
|
||
}
|
||
|
||
// Default atrPeriod to period when 0 (backward compatible)
|
||
int effectiveAtrPeriod = atrPeriod > 0 ? atrPeriod : period;
|
||
if (effectiveAtrPeriod < 1)
|
||
{
|
||
throw new ArgumentOutOfRangeException(nameof(atrPeriod), "ATR period must be >= 1.");
|
||
}
|
||
|
||
_period = period;
|
||
_atrPeriod = effectiveAtrPeriod;
|
||
_multiplier = multiplier;
|
||
_atrAlpha = 1.0 / effectiveAtrPeriod;
|
||
_smaBuffer = new RingBuffer(period);
|
||
|
||
WarmupPeriod = Math.Max(period, effectiveAtrPeriod);
|
||
|
||
Name = effectiveAtrPeriod == period
|
||
? $"Starchannel({period},{multiplier})"
|
||
: $"Starchannel({period},{multiplier},{effectiveAtrPeriod})";
|
||
_barHandler = HandleBar;
|
||
|
||
Reset();
|
||
}
|
||
|
||
public Starchannel(TBarSeries source, int period = 20, double multiplier = 2.0, int atrPeriod = 0) : this(period, multiplier, atrPeriod)
|
||
{
|
||
Prime(source);
|
||
source.Pub += _barHandler;
|
||
}
|
||
|
||
private void HandleBar(object? sender, in TBarEventArgs e) => Update(e.Value, e.IsNew);
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
private void PubEvent(TValue value, bool isNew = true) =>
|
||
Pub?.Invoke(this, new TValueEventArgs { Value = value, IsNew = isNew });
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public void Reset()
|
||
{
|
||
_smaBuffer.Clear();
|
||
_state = new State(0, 1.0, double.NaN, double.NaN, double.NaN, double.NaN, 0, false);
|
||
_p_state = _state;
|
||
Last = default;
|
||
Upper = default;
|
||
Lower = default;
|
||
}
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
private (double close, double high, double low) GetValid(double close, double high, double low)
|
||
{
|
||
if (double.IsFinite(close))
|
||
{
|
||
_state = _state with { LastValidClose = close };
|
||
}
|
||
else
|
||
{
|
||
close = _state.LastValidClose;
|
||
}
|
||
|
||
if (double.IsFinite(high))
|
||
{
|
||
_state = _state with { LastValidHigh = high };
|
||
}
|
||
else
|
||
{
|
||
high = _state.LastValidHigh;
|
||
}
|
||
|
||
if (double.IsFinite(low))
|
||
{
|
||
_state = _state with { LastValidLow = low };
|
||
}
|
||
else
|
||
{
|
||
low = _state.LastValidLow;
|
||
}
|
||
|
||
return (close, high, low);
|
||
}
|
||
|
||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
public TValue Update(TBar input, bool isNew = true)
|
||
{
|
||
if (isNew)
|
||
{
|
||
_p_state = _state;
|
||
_smaBuffer.Snapshot();
|
||
}
|
||
else
|
||
{
|
||
_state = _p_state;
|
||
_smaBuffer.Restore();
|
||
}
|
||
|
||
var (close, high, low) = GetValid(input.Close, input.High, input.Low);
|
||
|
||
// Handle first bar
|
||
if (_state.Bars == 0)
|
||
{
|
||
_smaBuffer.Add(close);
|
||
_state = _state with
|
||
{
|
||
RawRma = 0.0,
|
||
E = 1.0,
|
||
PrevClose = close,
|
||
Bars = 1
|
||
};
|
||
|
||
double sma = close;
|
||
Last = new TValue(input.Time, sma);
|
||
Upper = new TValue(input.Time, sma);
|
||
Lower = new TValue(input.Time, sma);
|
||
PubEvent(Last, isNew);
|
||
return Last;
|
||
}
|
||
|
||
if (isNew)
|
||
{
|
||
_state = _state with { Bars = _state.Bars + 1 };
|
||
}
|
||
|
||
// SMA: use RingBuffer's running sum
|
||
_smaBuffer.Add(close);
|
||
double smaValue = _smaBuffer.Average;
|
||
|
||
// True Range
|
||
double prevClose = _state.PrevClose;
|
||
double tr1 = high - low;
|
||
double tr2 = Math.Abs(high - prevClose);
|
||
double tr3 = Math.Abs(low - prevClose);
|
||
double trueRange = Math.Max(tr1, Math.Max(tr2, tr3));
|
||
|
||
// ATR using RMA with warmup compensation (uses _atrPeriod for separate ATR smoothing)
|
||
double newRawRma = (_state.RawRma * (_atrPeriod - 1) + trueRange) / _atrPeriod;
|
||
double newE = (1.0 - _atrAlpha) * _state.E;
|
||
double atrValue = newE > Epsilon ? newRawRma / (1.0 - newE) : newRawRma;
|
||
|
||
// Update state
|
||
_state = _state with
|
||
{
|
||
RawRma = newRawRma,
|
||
E = newE,
|
||
PrevClose = close
|
||
};
|
||
|
||
// Calculate bands
|
||
double width = _multiplier * atrValue;
|
||
double upper = smaValue + width;
|
||
double lower = smaValue - width;
|
||
|
||
if (!_state.IsHot && _state.Bars >= WarmupPeriod)
|
||
{
|
||
_state = _state with { IsHot = true };
|
||
}
|
||
|
||
Last = new TValue(input.Time, smaValue);
|
||
Upper = new TValue(input.Time, upper);
|
||
Lower = new TValue(input.Time, lower);
|
||
|
||
PubEvent(Last, isNew);
|
||
return Last;
|
||
}
|
||
|
||
public (TSeries Middle, TSeries Upper, TSeries Lower) Update(TBarSeries source)
|
||
{
|
||
if (source.Count == 0)
|
||
{
|
||
return (new TSeries([], []), new TSeries([], []), new TSeries([], []));
|
||
}
|
||
|
||
int len = source.Count;
|
||
var tMiddle = new List<long>(len);
|
||
var vMiddle = new List<double>(len);
|
||
var tUpper = new List<long>(len);
|
||
var vUpper = new List<double>(len);
|
||
var tLower = new List<long>(len);
|
||
var vLower = new List<double>(len);
|
||
|
||
CollectionsMarshal.SetCount(tMiddle, len);
|
||
CollectionsMarshal.SetCount(vMiddle, len);
|
||
CollectionsMarshal.SetCount(tUpper, len);
|
||
CollectionsMarshal.SetCount(vUpper, len);
|
||
CollectionsMarshal.SetCount(tLower, len);
|
||
CollectionsMarshal.SetCount(vLower, len);
|
||
|
||
var tSpan = CollectionsMarshal.AsSpan(tMiddle);
|
||
var vMiddleSpan = CollectionsMarshal.AsSpan(vMiddle);
|
||
var vUpperSpan = CollectionsMarshal.AsSpan(vUpper);
|
||
var vLowerSpan = CollectionsMarshal.AsSpan(vLower);
|
||
|
||
Batch(source.HighValues, source.LowValues, source.CloseValues,
|
||
vMiddleSpan, vUpperSpan, vLowerSpan, _period, _multiplier, _atrPeriod);
|
||
|
||
source.Times.CopyTo(tSpan);
|
||
tSpan.CopyTo(CollectionsMarshal.AsSpan(tUpper));
|
||
tSpan.CopyTo(CollectionsMarshal.AsSpan(tLower));
|
||
|
||
// Prime internal state for continued streaming
|
||
Prime(source);
|
||
|
||
var lastTime = new DateTime(source.Times[^1], DateTimeKind.Utc);
|
||
Last = new TValue(lastTime, vMiddleSpan[^1]);
|
||
Upper = new TValue(lastTime, vUpperSpan[^1]);
|
||
Lower = new TValue(lastTime, vLowerSpan[^1]);
|
||
|
||
return (new TSeries(tMiddle, vMiddle), new TSeries(tUpper, vUpper), new TSeries(tLower, vLower));
|
||
}
|
||
|
||
public void Prime(TBarSeries source)
|
||
{
|
||
Reset();
|
||
|
||
if (source.Count == 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
for (int i = 0; i < source.Count; i++)
|
||
{
|
||
Update(source[i], isNew: true);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Batch calculation using spans (zero allocation).
|
||
/// </summary>
|
||
public static void Batch(
|
||
ReadOnlySpan<double> high,
|
||
ReadOnlySpan<double> low,
|
||
ReadOnlySpan<double> close,
|
||
Span<double> middle,
|
||
Span<double> upper,
|
||
Span<double> lower,
|
||
int period,
|
||
double multiplier = 2.0,
|
||
int atrPeriod = 0)
|
||
{
|
||
if (period < 1)
|
||
{
|
||
throw new ArgumentOutOfRangeException(nameof(period), "Period must be >= 1.");
|
||
}
|
||
|
||
if (multiplier <= 0.0)
|
||
{
|
||
throw new ArgumentOutOfRangeException(nameof(multiplier), "Multiplier must be > 0.");
|
||
}
|
||
|
||
// Default atrPeriod to period when 0 (backward compatible)
|
||
int effectiveAtrPeriod = atrPeriod > 0 ? atrPeriod : period;
|
||
|
||
if (high.Length != low.Length || high.Length != close.Length)
|
||
{
|
||
throw new ArgumentException("High, Low, and Close spans must have the same length", nameof(high));
|
||
}
|
||
|
||
if (middle.Length < high.Length || upper.Length < high.Length || lower.Length < high.Length)
|
||
{
|
||
throw new ArgumentException("Output spans must be at least as long as inputs", nameof(middle));
|
||
}
|
||
|
||
int len = high.Length;
|
||
if (len == 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
double atrAlpha = 1.0 / effectiveAtrPeriod;
|
||
|
||
// First bar - sanitize first values
|
||
double lastValidClose = double.IsFinite(close[0]) ? close[0] : 0;
|
||
double lastValidHigh = double.IsFinite(high[0]) ? high[0] : lastValidClose;
|
||
double lastValidLow = double.IsFinite(low[0]) ? low[0] : lastValidClose;
|
||
|
||
// SMA running sum (initialized with sanitized first close)
|
||
double smaSum = lastValidClose;
|
||
double rawRma = 0.0;
|
||
double e = 1.0;
|
||
double prevClose = lastValidClose;
|
||
middle[0] = lastValidClose;
|
||
upper[0] = lastValidClose;
|
||
lower[0] = lastValidClose;
|
||
|
||
// Track sanitized close values for SMA subtraction
|
||
// Use stackalloc for period-sized buffer to track sanitized values
|
||
Span<double> sanitizedCloseBuffer = period <= 256 ? stackalloc double[period] : new double[period];
|
||
sanitizedCloseBuffer[0] = lastValidClose;
|
||
int bufferHead = 1;
|
||
|
||
for (int i = 1; i < len; i++)
|
||
{
|
||
double c = close[i];
|
||
double h = high[i];
|
||
double l = low[i];
|
||
|
||
// Sanitize non-finite values (match Update/GetValid behavior)
|
||
if (double.IsFinite(c))
|
||
{
|
||
lastValidClose = c;
|
||
}
|
||
else
|
||
{
|
||
c = lastValidClose;
|
||
}
|
||
|
||
if (double.IsFinite(h))
|
||
{
|
||
lastValidHigh = h;
|
||
}
|
||
else
|
||
{
|
||
h = lastValidHigh;
|
||
}
|
||
|
||
if (double.IsFinite(l))
|
||
{
|
||
lastValidLow = l;
|
||
}
|
||
else
|
||
{
|
||
l = lastValidLow;
|
||
}
|
||
|
||
// SMA: add current sanitized value, subtract oldest sanitized value if beyond window
|
||
if (i < period)
|
||
{
|
||
smaSum += c;
|
||
}
|
||
else
|
||
{
|
||
// Subtract the sanitized value from period bars ago, not raw close
|
||
int oldIndex = bufferHead;
|
||
smaSum += c - sanitizedCloseBuffer[oldIndex];
|
||
}
|
||
|
||
// Store sanitized close in ring buffer
|
||
sanitizedCloseBuffer[bufferHead] = c;
|
||
bufferHead = (bufferHead + 1) % period;
|
||
int count = Math.Min(i + 1, period);
|
||
double sma = smaSum / count;
|
||
|
||
// True Range
|
||
double tr1 = h - l;
|
||
double tr2 = Math.Abs(h - prevClose);
|
||
double tr3 = Math.Abs(l - prevClose);
|
||
double tr = Math.Max(tr1, Math.Max(tr2, tr3));
|
||
|
||
// ATR (RMA with warmup compensation, uses effectiveAtrPeriod)
|
||
rawRma = (rawRma * (effectiveAtrPeriod - 1) + tr) / effectiveAtrPeriod;
|
||
e = (1.0 - atrAlpha) * e;
|
||
double atr = e > Epsilon ? rawRma / (1.0 - e) : rawRma;
|
||
|
||
prevClose = c;
|
||
|
||
double width = multiplier * atr;
|
||
middle[i] = sma;
|
||
upper[i] = sma + width;
|
||
lower[i] = sma - width;
|
||
}
|
||
}
|
||
|
||
public static (TSeries Middle, TSeries Upper, TSeries Lower) Batch(TBarSeries source, int period = 20, double multiplier = 2.0, int atrPeriod = 0)
|
||
{
|
||
int len = source.Count;
|
||
var tMiddle = new List<long>(len);
|
||
var vMiddle = new List<double>(len);
|
||
var tUpper = new List<long>(len);
|
||
var vUpper = new List<double>(len);
|
||
var tLower = new List<long>(len);
|
||
var vLower = new List<double>(len);
|
||
|
||
CollectionsMarshal.SetCount(tMiddle, len);
|
||
CollectionsMarshal.SetCount(vMiddle, len);
|
||
CollectionsMarshal.SetCount(tUpper, len);
|
||
CollectionsMarshal.SetCount(vUpper, len);
|
||
CollectionsMarshal.SetCount(tLower, len);
|
||
CollectionsMarshal.SetCount(vLower, len);
|
||
|
||
Batch(source.HighValues, source.LowValues, source.CloseValues,
|
||
CollectionsMarshal.AsSpan(vMiddle),
|
||
CollectionsMarshal.AsSpan(vUpper),
|
||
CollectionsMarshal.AsSpan(vLower),
|
||
period, multiplier, atrPeriod);
|
||
|
||
source.Times.CopyTo(CollectionsMarshal.AsSpan(tMiddle));
|
||
CollectionsMarshal.AsSpan(tMiddle).CopyTo(CollectionsMarshal.AsSpan(tUpper));
|
||
CollectionsMarshal.AsSpan(tMiddle).CopyTo(CollectionsMarshal.AsSpan(tLower));
|
||
|
||
return (new TSeries(tMiddle, vMiddle), new TSeries(tUpper, vUpper), new TSeries(tLower, vLower));
|
||
}
|
||
|
||
public static ((TSeries Middle, TSeries Upper, TSeries Lower) Results, Starchannel Indicator) Calculate(TBarSeries source, int period = 20, double multiplier = 2.0, int atrPeriod = 0)
|
||
{
|
||
var indicator = new Starchannel(source, period, multiplier, atrPeriod);
|
||
var results = indicator.Update(source);
|
||
return (results, indicator);
|
||
}
|
||
}
|