mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-29 18:17:43 +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>
60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
using System.Drawing;
|
|
using System.Runtime.CompilerServices;
|
|
using TradingPlatform.BusinessLayer;
|
|
|
|
namespace QuanTAlib;
|
|
|
|
[SkipLocalsInit]
|
|
public sealed class AdxIndicator : Indicator, IWatchlistIndicator
|
|
{
|
|
[InputParameter("Period", sortIndex: 1, 1, 1000, 1, 0)]
|
|
public int Period { get; set; } = 14;
|
|
|
|
[InputParameter("Show cold values", sortIndex: 21)]
|
|
public bool ShowColdValues { get; set; } = true;
|
|
|
|
private Adx _adx = null!;
|
|
private readonly LineSeries _adxSeries;
|
|
private readonly LineSeries _diPlusSeries;
|
|
private readonly LineSeries _diMinusSeries;
|
|
|
|
public static int MinHistoryDepths => 0;
|
|
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
|
|
|
|
public override string ShortName => $"ADX {Period}";
|
|
public override string SourceCodeLink => "https://github.com/mihakralj/QuanTAlib/blob/main/lib/momentum/adx/Adx.Quantower.cs";
|
|
|
|
public AdxIndicator()
|
|
{
|
|
OnBackGround = true;
|
|
SeparateWindow = true;
|
|
Name = "ADX - Average Directional Index";
|
|
Description = "Measures the strength of a trend";
|
|
|
|
_adxSeries = new LineSeries(name: "ADX", color: Color.Blue, width: 2, style: LineStyle.Solid);
|
|
_diPlusSeries = new LineSeries(name: "+DI", color: Color.Green, width: 1, style: LineStyle.Solid);
|
|
_diMinusSeries = new LineSeries(name: "-DI", color: Color.Red, width: 1, style: LineStyle.Solid);
|
|
|
|
AddLineSeries(_adxSeries);
|
|
AddLineSeries(_diPlusSeries);
|
|
AddLineSeries(_diMinusSeries);
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
protected override void OnInit()
|
|
{
|
|
_adx = new Adx(Period);
|
|
base.OnInit();
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
protected override void OnUpdate(UpdateArgs args)
|
|
{
|
|
TValue result = _adx.Update(this.GetInputBar(args), args.IsNewBar());
|
|
|
|
_adxSeries.SetValue(result.Value, _adx.IsHot, ShowColdValues);
|
|
_diPlusSeries.SetValue(_adx.DiPlus.Value, _adx.IsHot, ShowColdValues);
|
|
_diMinusSeries.SetValue(_adx.DiMinus.Value, _adx.IsHot, ShowColdValues);
|
|
}
|
|
}
|