Renko Trend Reversal Strategy V2
Renko Trend Reversal Strategy V2 trades when renko open crosses renko close. It uses ATR-based renko bricks and applies stop-loss and take-profit levels. Shorts can be disabled.
Details
- Entry Criteria: renko open/close cross with time window
- Long/Short: Both (shorts optional)
- Exit Criteria: stop loss or take profit
- Stops: Yes
- Default Values:
RenkoAtrLength= 10StopLossPct= 3TakeProfitPct= 20
- Filters:
- Category: Trend
- Direction: Both
- Indicators: ATR
- Stops: Yes
- Complexity: Basic
- Timeframe: Renko
- Seasonality: No
- Neural networks: No
- Divergence: No
- Risk level: Medium
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>
/// Volatility-based trend reversal strategy simulating renko brick logic on regular candles.
/// Uses StandardDeviation instead of ATR for brick sizing.
/// </summary>
public class RenkoTrendReversalV2Strategy : Strategy
{
private readonly StrategyParam<int> _stdLength;
private readonly StrategyParam<decimal> _brickMultiplier;
private readonly StrategyParam<DataType> _candleType;
private decimal _brickHigh;
private decimal _brickLow;
private bool _isUpTrend;
private bool _hasBrick;
public int StdLength { get => _stdLength.Value; set => _stdLength.Value = value; }
public decimal BrickMultiplier { get => _brickMultiplier.Value; set => _brickMultiplier.Value = value; }
public DataType CandleType { get => _candleType.Value; set => _candleType.Value = value; }
public RenkoTrendReversalV2Strategy()
{
_stdLength = Param(nameof(StdLength), 14)
.SetGreaterThanZero()
.SetDisplay("StdDev Length", "StdDev period for brick size", "General");
_brickMultiplier = Param(nameof(BrickMultiplier), 0.5m)
.SetDisplay("Brick Multiplier", "Multiplier for brick size", "General");
_candleType = Param(nameof(CandleType), TimeSpan.FromHours(4).TimeFrame())
.SetDisplay("Candle Type", "Candle Type", "General");
}
/// <inheritdoc />
public override IEnumerable<(Security sec, DataType dt)> GetWorkingSecurities()
=> [(Security, CandleType)];
/// <inheritdoc />
protected override void OnReseted()
{
base.OnReseted();
_hasBrick = false;
_brickHigh = 0;
_brickLow = 0;
_isUpTrend = false;
}
/// <inheritdoc />
protected override void OnStarted2(DateTime time)
{
base.OnStarted2(time);
var stdDev = new StandardDeviation { Length = StdLength };
var subscription = SubscribeCandles(CandleType);
subscription.Bind(stdDev, ProcessCandle).Start();
var area = CreateChartArea();
if (area != null)
{
DrawCandles(area, subscription);
DrawIndicator(area, stdDev);
DrawOwnTrades(area);
}
}
private void ProcessCandle(ICandleMessage candle, decimal stdValue)
{
if (candle.State != CandleStates.Finished)
return;
if (stdValue <= 0)
return;
var brickSize = stdValue * BrickMultiplier;
if (!_hasBrick)
{
_brickHigh = candle.ClosePrice + brickSize;
_brickLow = candle.ClosePrice - brickSize;
_isUpTrend = true;
_hasBrick = true;
return;
}
// Check for trend reversal via brick break
if (candle.ClosePrice >= _brickHigh)
{
// Bullish brick formed
if (!_isUpTrend)
{
// Reversal from down to up
if (Position <= 0)
BuyMarket();
}
_isUpTrend = true;
_brickHigh = candle.ClosePrice + brickSize;
_brickLow = candle.ClosePrice - brickSize;
}
else if (candle.ClosePrice <= _brickLow)
{
// Bearish brick formed
if (_isUpTrend)
{
// Reversal from up to down
if (Position >= 0)
SellMarket();
}
_isUpTrend = false;
_brickHigh = candle.ClosePrice + brickSize;
_brickLow = candle.ClosePrice - brickSize;
}
}
}
import clr
clr.AddReference("StockSharp.Messages")
clr.AddReference("StockSharp.Algo")
clr.AddReference("StockSharp.Algo.Indicators")
clr.AddReference("StockSharp.Algo.Strategies")
from System import TimeSpan
from StockSharp.Messages import DataType, CandleStates
from StockSharp.Algo.Indicators import StandardDeviation
from StockSharp.Algo.Strategies import Strategy
class renko_trend_reversal_v2_strategy(Strategy):
def __init__(self):
super(renko_trend_reversal_v2_strategy, self).__init__()
self._std_length = self.Param("StdLength", 14) \
.SetDisplay("StdDev Length", "StdDev period for brick size", "General")
self._brick_multiplier = self.Param("BrickMultiplier", 0.5) \
.SetDisplay("Brick Multiplier", "Multiplier for brick size", "General")
self._candle_type = self.Param("CandleType", DataType.TimeFrame(TimeSpan.FromHours(4))) \
.SetDisplay("Candle Type", "Candle Type", "General")
self._brick_high = 0.0
self._brick_low = 0.0
self._is_up_trend = False
self._has_brick = False
@property
def std_length(self):
return self._std_length.Value
@property
def brick_multiplier(self):
return self._brick_multiplier.Value
@property
def candle_type(self):
return self._candle_type.Value
def OnReseted(self):
super(renko_trend_reversal_v2_strategy, self).OnReseted()
self._brick_high = 0.0
self._brick_low = 0.0
self._is_up_trend = False
self._has_brick = False
def OnStarted2(self, time):
super(renko_trend_reversal_v2_strategy, self).OnStarted2(time)
std_dev = StandardDeviation()
std_dev.Length = self.std_length
subscription = self.SubscribeCandles(self.candle_type)
subscription.Bind(std_dev, self.on_process).Start()
area = self.CreateChartArea()
if area is not None:
self.DrawCandles(area, subscription)
self.DrawIndicator(area, std_dev)
self.DrawOwnTrades(area)
def on_process(self, candle, std_value):
if candle.State != CandleStates.Finished:
return
if std_value <= 0:
return
brick_size = std_value * self.brick_multiplier
if not self._has_brick:
self._brick_high = candle.ClosePrice + brick_size
self._brick_low = candle.ClosePrice - brick_size
self._is_up_trend = True
self._has_brick = True
return
# Check for trend reversal via brick break
if candle.ClosePrice >= self._brick_high:
# Bullish brick formed
if not self._is_up_trend:
# Reversal from down to up
if self.Position <= 0:
self.BuyMarket()
self._is_up_trend = True
self._brick_high = candle.ClosePrice + brick_size
self._brick_low = candle.ClosePrice - brick_size
elif candle.ClosePrice <= self._brick_low:
# Bearish brick formed
if self._is_up_trend:
# Reversal from up to down
if self.Position >= 0:
self.SellMarket()
self._is_up_trend = False
self._brick_high = candle.ClosePrice + brick_size
self._brick_low = candle.ClosePrice - brick_size
def CreateClone(self):
return renko_trend_reversal_v2_strategy()