Auf GitHub ansehen

Candels High Open Strategy

Strategy that trades when a candle opens exactly at its high or low. A long position is opened if the candle's open equals its low, anticipating upward movement. A short position is opened if the candle's open equals its high, expecting a decline. The position is closed when price crosses the Parabolic SAR value, acting as a trailing exit.

Details

  • Entry Criteria:
    • Long: Open == Low
    • Short: Open == High
  • Long/Short: Both
  • Exit Criteria: Price crosses Parabolic SAR or opposite signal
  • Stops: Uses fixed stop loss and take profit levels
  • Default Values:
    • StopLevel = 50m
    • TakeLevel = 50m
    • SarStep = 0.02m
    • SarMax = 0.2m
    • CandleType = TimeSpan.FromMinutes(5).TimeFrame()
    • ReverseSignals = false
  • Filters:
    • Category: Price action
    • Direction: Both
    • Indicators: Parabolic SAR
    • Stops: Yes
    • Complexity: Basic
    • Timeframe: Intraday
    • Seasonality: No
    • Neural Networks: No
    • Divergence: No
    • Risk Level: Medium
using System;
using System.Linq;
using System.Collections.Generic;

using Ecng.Common;
using Ecng.Collections;
using Ecng.Serialization;

using StockSharp.Algo.Indicators;
using StockSharp.Algo.Strategies;
using StockSharp.BusinessEntities;
using StockSharp.Messages;

namespace StockSharp.Samples.Strategies;

/// <summary>
/// Strategy that enters when a candle opens at its high or low and exits on Parabolic SAR reversal.
/// </summary>
public class CandelsHighOpenStrategy : Strategy
{
	private readonly StrategyParam<DataType> _candleType;
	private readonly StrategyParam<bool> _reverseSignals;
	private readonly StrategyParam<decimal> _stopLevel;
	private readonly StrategyParam<decimal> _takeLevel;
	private readonly StrategyParam<decimal> _sarStep;
	private readonly StrategyParam<decimal> _sarMax;

	/// <summary>
	/// Candle type for calculations.
	/// </summary>
	public DataType CandleType
	{
		get => _candleType.Value;
		set => _candleType.Value = value;
	}

	/// <summary>
	/// Reverse entry signals.
	/// </summary>
	public bool ReverseSignals
	{
		get => _reverseSignals.Value;
		set => _reverseSignals.Value = value;
	}

	/// <summary>
	/// Stop loss level in absolute price.
	/// </summary>
	public decimal StopLevel
	{
		get => _stopLevel.Value;
		set => _stopLevel.Value = value;
	}

	/// <summary>
	/// Take profit level in absolute price.
	/// </summary>
	public decimal TakeLevel
	{
		get => _takeLevel.Value;
		set => _takeLevel.Value = value;
	}

	/// <summary>
	/// Parabolic SAR acceleration step.
	/// </summary>
	public decimal SarStep
	{
		get => _sarStep.Value;
		set => _sarStep.Value = value;
	}

	/// <summary>
	/// Parabolic SAR maximum acceleration.
	/// </summary>
	public decimal SarMax
	{
		get => _sarMax.Value;
		set => _sarMax.Value = value;
	}

	/// <summary>
	/// Initializes a new instance of the strategy.
	/// </summary>
	public CandelsHighOpenStrategy()
	{
		_candleType = Param(nameof(CandleType), TimeSpan.FromHours(4).TimeFrame())
			.SetDisplay("Candle Type", "Type of candles used for processing", "General")
			;

		_reverseSignals = Param(nameof(ReverseSignals), false)
			.SetDisplay("Reverse Signals", "Invert long and short signals", "General")
			;

		_stopLevel = Param(nameof(StopLevel), 50m)
			.SetGreaterThanZero()
			.SetDisplay("Stop Level", "Absolute stop loss distance", "Protection")
			;

		_takeLevel = Param(nameof(TakeLevel), 50m)
			.SetGreaterThanZero()
			.SetDisplay("Take Level", "Absolute take profit distance", "Protection")
			;

		_sarStep = Param(nameof(SarStep), 0.02m)
			.SetGreaterThanZero()
			.SetDisplay("SAR Step", "Acceleration factor step for Parabolic SAR", "Indicators")
			;

		_sarMax = Param(nameof(SarMax), 0.2m)
			.SetGreaterThanZero()
			.SetDisplay("SAR Max", "Maximum acceleration factor for Parabolic SAR", "Indicators")
			;
	}

	/// <inheritdoc />
	public override IEnumerable<(Security sec, DataType dt)> GetWorkingSecurities()
	{
		return [(Security, CandleType)];
	}

	/// <inheritdoc />
	protected override void OnStarted2(DateTime time)
	{
		base.OnStarted2(time);

		var psar = new ParabolicSar
		{
			Acceleration = SarStep,
			AccelerationMax = SarMax,
			AccelerationStep = SarStep
		};

		var subscription = SubscribeCandles(CandleType);

		subscription
			.Bind(psar, ProcessCandle)
			.Start();

		StartProtection(
			stopLoss: new Unit(StopLevel, UnitTypes.Absolute),
			takeProfit: new Unit(TakeLevel, UnitTypes.Absolute));

		var area = CreateChartArea();
		if (area != null)
		{
			DrawCandles(area, subscription);
			DrawIndicator(area, psar);
			DrawOwnTrades(area);
		}
	}

	private void ProcessCandle(ICandleMessage candle, decimal psarValue)
	{
		if (candle.State != CandleStates.Finished)
			return;

		// Exit conditions based on Parabolic SAR reversal
		if (Position > 0 && candle.ClosePrice < psarValue)
		{
			SellMarket();
			return;
		}
		if (Position < 0 && candle.ClosePrice > psarValue)
		{
			BuyMarket();
			return;
		}

		var openAtHigh = candle.OpenPrice == candle.HighPrice;
		var openAtLow = candle.OpenPrice == candle.LowPrice;

		if (ReverseSignals)
		{
			var tmp = openAtHigh;
			openAtHigh = openAtLow;
			openAtLow = tmp;
		}

		if (openAtLow && Position <= 0)
		{
			BuyMarket();
		}
		else if (openAtHigh && Position >= 0)
		{
			SellMarket();
		}
	}
}