Ver no GitHub

Estratégia E TurboFx

Estratégia de reversão de momentum adaptada do especialista MQL5 "e-TurboFx". O sistema observa uma série de velas cujos corpos crescem em tamanho na mesma direção. Após várias velas de baixa com corpos em expansão, a estratégia compra esperando uma recuperação. Após várias velas de alta com corpos crescentes, vende. Stop-loss e take-profit opcionais são definidos em pontos de preço brutos.

Detalhes

  • Critérios de entrada:
    • Comprado: N velas de baixa consecutivas e cada corpo maior que o anterior
    • Vendido: N velas de alta consecutivas e cada corpo maior que o anterior
  • Comprado/Vendido: Ambos
  • Critérios de saída: Stop-loss ou take-profit
  • Stops: Pontos via StartProtection
  • Valores padrão:
    • BarsCount = 3
    • StopLossPoints = 700
    • TakeProfitPoints = 1200
    • CandleType = TimeSpan.FromMinutes(1).TimeFrame()
  • Filtros:
    • Categoria: Price Action
    • Direção: Ambos
    • Indicadores: Nenhum
    • Stops: Sim
    • Complexidade: Básico
    • Período: Intradiário
    • Sazonalidade: Não
    • Redes neurais: Não
    • Divergência: Não
    • Nível de risco: Médio
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>
/// Reversal candle pattern strategy with EMA filter.
/// </summary>
public class ETurboFxStrategy : Strategy
{
	private readonly StrategyParam<int> _emaPeriod;
	private readonly StrategyParam<DataType> _candleType;

	private int _bearCount;
	private int _bullCount;
	private decimal _prevBody;
	private bool _hasPrev;

	public int EmaPeriod { get => _emaPeriod.Value; set => _emaPeriod.Value = value; }
	public DataType CandleType { get => _candleType.Value; set => _candleType.Value = value; }

	public ETurboFxStrategy()
	{
		_emaPeriod = Param(nameof(EmaPeriod), 20)
			.SetGreaterThanZero()
			.SetDisplay("EMA Period", "EMA trend filter period", "Parameters");

		_candleType = Param(nameof(CandleType), TimeSpan.FromHours(4).TimeFrame())
			.SetDisplay("Candle Type", "Candle type", "General");
	}

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

	protected override void OnReseted()
	{
		base.OnReseted();
		_bearCount = 0;
		_bullCount = 0;
		_prevBody = 0;
		_hasPrev = false;
	}

	protected override void OnStarted2(DateTime time)
	{
		base.OnStarted2(time);

		var ema = new ExponentialMovingAverage { Length = EmaPeriod };

		SubscribeCandles(CandleType)
			.Bind(ema, ProcessCandle)
			.Start();
	}

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

		var body = Math.Abs(candle.ClosePrice - candle.OpenPrice);

		if (candle.ClosePrice < candle.OpenPrice)
		{
			_bearCount++;
			if (_hasPrev && body > _prevBody)
				_bearCount = Math.Min(_bearCount, 10);
			else
				_bearCount = 1;

			_bullCount = 0;
		}
		else if (candle.ClosePrice > candle.OpenPrice)
		{
			_bullCount++;
			if (_hasPrev && body > _prevBody)
				_bullCount = Math.Min(_bullCount, 10);
			else
				_bullCount = 1;

			_bearCount = 0;
		}
		else
		{
			_bearCount = 0;
			_bullCount = 0;
		}

		_prevBody = body;
		_hasPrev = true;

		// Buy reversal after 3 bearish candles when price above EMA
		if (_bearCount >= 3 && candle.ClosePrice > emaVal && Position <= 0)
		{
			if (Position < 0) BuyMarket();
			BuyMarket();
		}
		// Sell reversal after 3 bullish candles when price below EMA
		else if (_bullCount >= 3 && candle.ClosePrice < emaVal && Position >= 0)
		{
			if (Position > 0) SellMarket();
			SellMarket();
		}
	}
}