mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-12 15:48:05 +00:00
61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
using System.Drawing;
|
|
using TradingPlatform.BusinessLayer;
|
|
|
|
namespace QuanTAlib;
|
|
|
|
public class ApoIndicator : Indicator, IWatchlistIndicator
|
|
{
|
|
[InputParameter("Fast Period", sortIndex: 1, 1, 2000, 1, 0)]
|
|
public int FastPeriod { get; set; } = 12;
|
|
|
|
[InputParameter("Slow Period", sortIndex: 2, 1, 2000, 1, 0)]
|
|
public int SlowPeriod { get; set; } = 26;
|
|
|
|
[IndicatorExtensions.DataSourceInput]
|
|
public SourceType Source { get; set; } = SourceType.Close;
|
|
|
|
|
|
[InputParameter("Show cold values", sortIndex: 21)]
|
|
public bool ShowColdValues { get; set; } = true;
|
|
|
|
private Apo? apo;
|
|
protected LineSeries? ApoSeries;
|
|
public int MinHistoryDepths => Math.Max(FastPeriod, SlowPeriod) * 2;
|
|
int IWatchlistIndicator.MinHistoryDepths => MinHistoryDepths;
|
|
|
|
public ApoIndicator()
|
|
{
|
|
Name = "APO - Absolute Price Oscillator";
|
|
Description = "Shows the difference between two moving averages of different periods.";
|
|
SeparateWindow = true;
|
|
|
|
ApoSeries = new($"APO {FastPeriod},{SlowPeriod}", color: IndicatorExtensions.Momentum, 2, LineStyle.Solid);
|
|
AddLineSeries(ApoSeries);
|
|
}
|
|
|
|
protected override void OnInit()
|
|
{
|
|
apo = new Apo(FastPeriod, SlowPeriod);
|
|
base.OnInit();
|
|
}
|
|
|
|
protected override void OnUpdate(UpdateArgs args)
|
|
{
|
|
TValue input = this.GetInputValue(args, Source);
|
|
TValue result = apo!.Calc(input);
|
|
|
|
ApoSeries!.SetValue(result.Value);
|
|
ApoSeries!.SetMarker(0, Color.Transparent);
|
|
}
|
|
|
|
#pragma warning disable CA1416 // Validate platform compatibility
|
|
|
|
public override string ShortName => $"APO ({FastPeriod},{SlowPeriod})";
|
|
|
|
public override void OnPaintChart(PaintChartEventArgs args)
|
|
{
|
|
base.OnPaintChart(args);
|
|
this.PaintSmoothCurve(args, ApoSeries!, apo!.WarmupPeriod, showColdValues: ShowColdValues, tension: 0.2);
|
|
}
|
|
}
|