mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-30 10:37:44 +00:00
86fe32a682
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat> Co-authored-by: Warp <agent@warp.dev>
68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
using System.Drawing;
|
|
using System.Runtime.CompilerServices;
|
|
using TradingPlatform.BusinessLayer;
|
|
|
|
namespace QuanTAlib;
|
|
|
|
[SkipLocalsInit]
|
|
public sealed class SuperIndicator : Indicator, IWatchlistIndicator
|
|
{
|
|
[InputParameter("Period", sortIndex: 1, 1, 2000, 1, 0)]
|
|
public int Period { get; set; } = 10;
|
|
|
|
[InputParameter("Multiplier", sortIndex: 2, 0.1, 100.0, 0.1, 1)]
|
|
public double Multiplier { get; set; } = 3.0;
|
|
|
|
[InputParameter("Show cold values", sortIndex: 21)]
|
|
public bool ShowColdValues { get; set; } = true;
|
|
|
|
private Super _super = null!;
|
|
private readonly LineSeries _series;
|
|
private readonly LineSeries _upperBand;
|
|
private readonly LineSeries _lowerBand;
|
|
|
|
public static int MinHistoryDepths => 0;
|
|
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
|
|
|
|
public override string ShortName => $"Super {Period}:{Multiplier}";
|
|
public override string SourceCodeLink => "https://github.com/mihakralj/QuanTAlib/blob/master/lib/trends/super/Super.Quantower.cs";
|
|
|
|
public SuperIndicator()
|
|
{
|
|
OnBackGround = true;
|
|
SeparateWindow = false;
|
|
Name = "SuperTrend";
|
|
Description = "SuperTrend Indicator";
|
|
_series = new LineSeries(name: "SuperTrend", color: Color.Orange, width: 2, style: LineStyle.Solid);
|
|
_upperBand = new LineSeries(name: "Upper Band", color: Color.Red, width: 1, style: LineStyle.Dot);
|
|
_lowerBand = new LineSeries(name: "Lower Band", color: Color.Green, width: 1, style: LineStyle.Dot);
|
|
AddLineSeries(_series);
|
|
AddLineSeries(_upperBand);
|
|
AddLineSeries(_lowerBand);
|
|
}
|
|
|
|
protected override void OnInit()
|
|
{
|
|
_super = new Super(Period, Multiplier);
|
|
base.OnInit();
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
protected override void OnUpdate(UpdateArgs args)
|
|
{
|
|
bool isNew = args.IsNewBar();
|
|
var bar = this.GetInputBar(args);
|
|
double value = _super.Update(bar, isNew).Value;
|
|
|
|
_series.SetValue(value, _super.IsHot, ShowColdValues);
|
|
_upperBand.SetValue(_super.UpperBand.Value, _super.IsHot, ShowColdValues);
|
|
_lowerBand.SetValue(_super.LowerBand.Value, _super.IsHot, ShowColdValues);
|
|
|
|
// Color logic
|
|
if (_super.IsHot)
|
|
{
|
|
_series.SetMarker(0, _super.IsBullish ? Color.Green : Color.Red);
|
|
}
|
|
}
|
|
}
|