Ver en GitHub

Estrategia WellMartin

Descripción General

La estrategia WellMartin es un sistema de reversión a la media que combina las Bandas de Bollinger y el Índice Direccional Promedio (ADX). Entra en posiciones largas cuando el precio rompe por debajo de la banda de Bollinger inferior durante una baja fortaleza de tendencia, y entra en posiciones cortas cuando el precio rompe por encima de la banda superior bajo las mismas condiciones. Las posiciones se cierran cuando el precio alcanza la banda opuesta o golpea los niveles de take profit o stop loss configurados.

Parámetros

  • CandleType – serie de velas utilizada para los cálculos.
  • BollingerPeriod – período para las Bandas de Bollinger.
  • BollingerWidth – multiplicador de desviación estándar para las Bandas de Bollinger.
  • AdxPeriod – período para el indicador ADX.
  • AdxLevel – umbral ADX; las operaciones se realizan solo cuando el valor ADX está por debajo de este nivel.
  • Volume – volumen de operación para cada entrada.
  • TakeProfit – objetivo de ganancia en unidades de precio.
  • StopLoss – límite de pérdida en unidades de precio.

Lógica

  1. Suscribirse a datos de velas y calcular las Bandas de Bollinger y ADX.
  2. Cuando no hay posición abierta:
    • Comprar si el precio de cierre está por debajo de la banda inferior y el ADX está por debajo del umbral.
    • Vender si el precio de cierre está por encima de la banda superior y el ADX está por debajo del umbral.
  3. Rastrear el lado de la última operación ejecutada y permitir entradas solo en la misma dirección o cuando no se han realizado operaciones.
  4. Cuando en una posición larga:
    • Salir si el precio toca la banda superior, alcanza el take profit o golpea el stop loss.
  5. Cuando en una posición corta:
    • Salir si el precio toca la banda inferior, alcanza el take profit o golpea el stop loss.

Notas

Esta implementación utiliza un volumen de operación fijo. La versión MQL original aumentaba el volumen después de una operación perdedora; este comportamiento puede añadirse más tarde si se requiere.

using System;
using System.Collections.Generic;

using Ecng.Common;

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

namespace StockSharp.Samples.Strategies;

/// <summary>
/// Well Martin mean reversion strategy using Bollinger Bands.
/// Buys at lower band, sells at upper band.
/// </summary>
public class WellMartinStrategy : Strategy
{
	private readonly StrategyParam<DataType> _candleType;
	private readonly StrategyParam<int> _bollingerPeriod;
	private readonly StrategyParam<decimal> _bollingerWidth;
	private readonly StrategyParam<decimal> _takeProfit;
	private readonly StrategyParam<decimal> _stopLoss;

	private decimal _entryPrice;

	public DataType CandleType { get => _candleType.Value; set => _candleType.Value = value; }
	public int BollingerPeriod { get => _bollingerPeriod.Value; set => _bollingerPeriod.Value = value; }
	public decimal BollingerWidth { get => _bollingerWidth.Value; set => _bollingerWidth.Value = value; }
	public decimal TakeProfit { get => _takeProfit.Value; set => _takeProfit.Value = value; }
	public decimal StopLoss { get => _stopLoss.Value; set => _stopLoss.Value = value; }

	public WellMartinStrategy()
	{
		_candleType = Param(nameof(CandleType), TimeSpan.FromHours(4).TimeFrame())
			.SetDisplay("Candle Type", "Type of candles", "General");

		_bollingerPeriod = Param(nameof(BollingerPeriod), 84)
			.SetDisplay("Bollinger Period", "Bollinger Bands period", "Indicators");

		_bollingerWidth = Param(nameof(BollingerWidth), 1.8m)
			.SetDisplay("Bollinger Width", "Bollinger Bands width", "Indicators");

		_takeProfit = Param(nameof(TakeProfit), 1200m)
			.SetDisplay("Take Profit", "Take profit in price units", "Risk");

		_stopLoss = Param(nameof(StopLoss), 1400m)
			.SetDisplay("Stop Loss", "Stop loss in price units", "Risk");
	}

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

	/// <inheritdoc />
	protected override void OnReseted()
	{
		base.OnReseted();
		_entryPrice = 0;
	}

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

		var bb = new BollingerBands
		{
			Length = BollingerPeriod,
			Width = BollingerWidth
		};

		SubscribeCandles(CandleType)
			.BindEx(bb, ProcessCandle)
			.Start();
	}

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

		var bb = (IBollingerBandsValue)bbValue;
		if (bb.UpBand is not decimal upper || bb.LowBand is not decimal lower)
			return;

		var close = candle.ClosePrice;

		// Exit management
		if (Position > 0)
		{
			var profit = close - _entryPrice;
			if (close >= upper || (TakeProfit > 0 && profit >= TakeProfit) || (StopLoss > 0 && -profit >= StopLoss))
			{
				SellMarket();
				return;
			}
		}
		else if (Position < 0)
		{
			var profit = _entryPrice - close;
			if (close <= lower || (TakeProfit > 0 && profit >= TakeProfit) || (StopLoss > 0 && -profit >= StopLoss))
			{
				BuyMarket();
				return;
			}
		}

		if (Position != 0)
			return;

		// Mean reversion: buy at lower band, sell at upper band
		if (close < lower)
		{
			BuyMarket();
			_entryPrice = close;
		}
		else if (close > upper)
		{
			SellMarket();
			_entryPrice = close;
		}
	}
}