Стратегия ReInitChart
Стратегия переносит утилиту MetaTrader ReInitChart в StockSharp. Исходный эксперт добавлял на каждый график кнопку, которая временно переключала таймфрейм, принуждая платформу пересчитать индикаторы. В адаптации для StockSharp эта идея реализована через параметр ручного обновления и необязательный таймер, которые сбрасывают состояние скользящей средней и фиксируют событие в журнале. Дополнительно встроено простое правило следования за трендом, чтобы показать работу после повторной инициализации.
Как работает
- Основной поток данных — стратегия подписывается на таймфрейм из параметра
CandleType и рассчитывает простую скользящую среднюю длиной SmaLength.
- Ручной сброс — при установке
ManualRefreshRequest = true скользящая средняя обнуляется, флаг возвращается в false, а в журнал добавляется запись с исходными метаданными кнопки (RefreshCommandName, RefreshCommandText, TextColorName, BackgroundColorName).
- Автоматический сброс — если
AutoRefreshEnabled = true, то каждые AutoRefreshInterval индикатор сбрасывается повторно, что повторяет таймер из MetaTrader.
- Торговая логика — после формирования SMA стратегия удерживает не более одной позиции: покупает при закрытии выше средней и разворачивается в шорт при закрытии ниже неё, предварительно закрывая противоположную позицию.
Таким образом достигается тот же эффект «переинициализации» графиков, но средствами StockSharp: прямым сбросом индикатора и логированием без переключения таймфреймов.
Параметры
| Параметр |
Описание |
CandleType |
Рабочий таймфрейм для подписки на свечи. |
SmaLength |
Количество свечей в скользящей средней, пересчитываемой после каждого сброса. |
AutoRefreshEnabled |
Включает периодический автоматический сброс. |
AutoRefreshInterval |
Интервал между автоматическими сбросами. |
ManualRefreshRequest |
Установите true, чтобы инициировать немедленный сброс; стратегия сама вернёт параметр в false. |
RefreshCommandName |
Имя кнопки из MetaTrader, выводится в журнале при сбросе. |
RefreshCommandText |
Подпись кнопки, также отражается в журнале. |
TextColorName |
Сохранённый цвет текста кнопки из MQL для справки и логов. |
BackgroundColorName |
Сохранённый цвет фона кнопки из MQL для справки и логов. |
Использование
- Настройте
CandleType и SmaLength под нужный инструмент и горизонт анализа.
- Включите
AutoRefreshEnabled и задайте AutoRefreshInterval, если требуются регулярные переинициализации; оставьте отключённым для полностью ручного контроля.
- При необходимости повторного расчёта переведите
ManualRefreshRequest в true. Параметр автоматически вернётся к false, а индикатор начнёт накапливать данные заново.
- Запустите стратегию — она подпишется на рынок, отрисует свечи, SMA и сделки, после чего начнёт торговать по правилу пересечения цены и средней.
Отличия от исходного MQL-скрипта
- В StockSharp нет прямого аналога кнопок на графике, поэтому триггер реализован через параметры стратегии.
- Вместо переключения между M1 и M5 индикатор обнуляется напрямую, что надёжнее в архитектуре StockSharp.
- Название и цвета кнопки сохранены только как метаданные для журналирования, визуальных элементов в платформе не создаётся.
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 mimics the MetaTrader ReInitChart utility by resetting indicators on demand.
/// It resets a moving average either manually or on a timer and uses the SMA for simple trend-following entries.
/// </summary>
public class ReInitChartStrategy : Strategy
{
private readonly StrategyParam<DataType> _candleType;
private readonly StrategyParam<int> _smaLength;
private readonly StrategyParam<bool> _autoRefreshEnabled;
private readonly StrategyParam<TimeSpan> _autoRefreshInterval;
private readonly StrategyParam<bool> _manualRefreshRequest;
private readonly StrategyParam<string> _refreshCommandName;
private readonly StrategyParam<string> _refreshCommandText;
private readonly StrategyParam<string> _textColorName;
private readonly StrategyParam<string> _backgroundColorName;
private SimpleMovingAverage _sma = null!;
private bool _manualRefreshArmed;
private DateTimeOffset? _nextAutoRefreshTime;
private int _previousRelation;
/// <summary>
/// Primary candle type used to drive the strategy.
/// </summary>
public DataType CandleType
{
get => _candleType.Value;
set => _candleType.Value = value;
}
/// <summary>
/// Length of the moving average that is recalculated after each refresh.
/// </summary>
public int SmaLength
{
get => _smaLength.Value;
set => _smaLength.Value = value;
}
/// <summary>
/// Enables or disables automatic refresh events.
/// </summary>
public bool AutoRefreshEnabled
{
get => _autoRefreshEnabled.Value;
set => _autoRefreshEnabled.Value = value;
}
/// <summary>
/// Interval between automatic refresh operations.
/// </summary>
public TimeSpan AutoRefreshInterval
{
get => _autoRefreshInterval.Value;
set => _autoRefreshInterval.Value = value;
}
/// <summary>
/// Manual refresh flag that emulates the original MetaTrader button press.
/// </summary>
public bool ManualRefreshRequest
{
get => _manualRefreshRequest.Value;
set => _manualRefreshRequest.Value = value;
}
/// <summary>
/// Identifier of the refresh command, matching the MetaTrader button name.
/// </summary>
public string RefreshCommandName
{
get => _refreshCommandName.Value;
set => _refreshCommandName.Value = value;
}
/// <summary>
/// Text displayed for the refresh command.
/// </summary>
public string RefreshCommandText
{
get => _refreshCommandText.Value;
set => _refreshCommandText.Value = value;
}
/// <summary>
/// Text color descriptor preserved from the original script.
/// </summary>
public string TextColorName
{
get => _textColorName.Value;
set => _textColorName.Value = value;
}
/// <summary>
/// Background color descriptor preserved from the original script.
/// </summary>
public string BackgroundColorName
{
get => _backgroundColorName.Value;
set => _backgroundColorName.Value = value;
}
/// <summary>
/// Initializes strategy parameters.
/// </summary>
public ReInitChartStrategy()
{
_candleType = Param(nameof(CandleType), TimeSpan.FromHours(1).TimeFrame())
.SetDisplay("Candle Type", "Time frame used for the primary chart subscription.", "Data");
_smaLength = Param(nameof(SmaLength), 20)
.SetGreaterThanZero()
.SetDisplay("SMA Length", "Number of candles for the recalculated moving average.", "Reinitialization");
_autoRefreshEnabled = Param(nameof(AutoRefreshEnabled), false)
.SetDisplay("Auto Refresh", "Enable periodic indicator reinitialization.", "Reinitialization");
_autoRefreshInterval = Param(nameof(AutoRefreshInterval), TimeSpan.FromMinutes(5))
.SetDisplay("Refresh Interval", "Time interval between automatic refresh operations.", "Reinitialization");
_manualRefreshRequest = Param(nameof(ManualRefreshRequest), false)
.SetDisplay("Manual Refresh", "Set to true to trigger a one-time indicator reset.", "Reinitialization");
_refreshCommandName = Param(nameof(RefreshCommandName), "ButtonReDraw")
.SetDisplay("Command Name", "Identifier that matches the MetaTrader button name.", "Appearance");
_refreshCommandText = Param(nameof(RefreshCommandText), "Recalculate")
.SetDisplay("Command Text", "Text shown on logs to mirror the MetaTrader button caption.", "Appearance");
_textColorName = Param(nameof(TextColorName), "NavajoWhite")
.SetDisplay("Text Color", "Original MetaTrader button text color.", "Appearance");
_backgroundColorName = Param(nameof(BackgroundColorName), "SlateGray")
.SetDisplay("Background Color", "Original MetaTrader button background color.", "Appearance");
}
/// <inheritdoc />
public override IEnumerable<(Security sec, DataType dt)> GetWorkingSecurities()
{
yield return (Security, CandleType);
}
/// <inheritdoc />
protected override void OnReseted()
{
base.OnReseted();
_manualRefreshArmed = false;
_nextAutoRefreshTime = null;
_previousRelation = 0;
}
/// <inheritdoc />
protected override void OnStarted2(DateTime time)
{
base.OnStarted2(time);
_sma = new SMA
{
Length = SmaLength,
};
// Subscribe to the primary candle stream and bind the moving average.
var subscription = SubscribeCandles(CandleType);
subscription
.Bind(_sma, ProcessCandle)
.Start();
// Draw candles, indicator and executed trades when charting is available.
var area = CreateChartArea();
if (area != null)
{
DrawCandles(area, subscription);
DrawIndicator(area, _sma);
DrawOwnTrades(area);
}
if (AutoRefreshEnabled)
{
_nextAutoRefreshTime = time + AutoRefreshInterval;
}
}
private void ProcessCandle(ICandleMessage candle, decimal smaValue)
{
if (candle.State != CandleStates.Finished)
return;
// Handle manual or automatic refresh triggers using the candle close time.
CheckManualRefresh(candle.CloseTime);
CheckAutoRefresh(candle.CloseTime);
// Synchronize the moving average length if the parameter changed on the fly.
if (_sma.Length != SmaLength)
{
_sma.Length = SmaLength;
_sma.Reset();
this.LogInfo($"[{RefreshCommandName}] SMA length changed to {SmaLength}. Indicator state reset.");
return;
}
if (!_sma.IsFormed)
return;
if (!IsFormedAndOnlineAndAllowTrading())
return;
if (Volume <= 0)
return;
var relation = candle.ClosePrice > smaValue ? 1 : candle.ClosePrice < smaValue ? -1 : 0;
if (relation == 0 || relation == _previousRelation)
{
_previousRelation = relation;
return;
}
if (relation > 0)
{
if (Position < 0)
BuyMarket(Math.Abs(Position));
if (Position <= 0)
BuyMarket(Volume);
}
else if (relation < 0)
{
if (Position > 0)
SellMarket(Position);
if (Position >= 0)
SellMarket(Volume);
}
_previousRelation = relation;
}
private void CheckManualRefresh(DateTimeOffset currentTime)
{
if (ManualRefreshRequest)
{
if (!_manualRefreshArmed)
{
PerformRefresh(currentTime, "manual request");
ManualRefreshRequest = false;
_manualRefreshArmed = true;
}
}
else
{
_manualRefreshArmed = false;
}
}
private void CheckAutoRefresh(DateTimeOffset currentTime)
{
if (!AutoRefreshEnabled)
{
_nextAutoRefreshTime = null;
return;
}
if (_nextAutoRefreshTime is null)
_nextAutoRefreshTime = currentTime + AutoRefreshInterval;
if (currentTime < _nextAutoRefreshTime.Value)
return;
PerformRefresh(currentTime, "automatic schedule");
_nextAutoRefreshTime = currentTime + AutoRefreshInterval;
}
private void PerformRefresh(DateTimeOffset time, string reason)
{
// Reset the moving average so that future candles rebuild the indicator state.
_sma.Reset();
_previousRelation = 0;
this.LogInfo($"[{RefreshCommandName}] {RefreshCommandText} triggered by {reason} at {time:O}. TextColor={TextColorName}, BackgroundColor={BackgroundColorName}.");
}
}
import clr
clr.AddReference("StockSharp.Messages")
clr.AddReference("StockSharp.Algo")
clr.AddReference("StockSharp.Algo.Indicators")
clr.AddReference("StockSharp.Algo.Strategies")
from System import TimeSpan, Math
from StockSharp.Messages import DataType, CandleStates
from StockSharp.Algo.Indicators import SimpleMovingAverage
from StockSharp.Algo.Strategies import Strategy
from indicator_extensions import *
class re_init_chart_strategy(Strategy):
def __init__(self):
super(re_init_chart_strategy, self).__init__()
self._sma_length = self.Param("SmaLength", 20).SetGreaterThanZero().SetDisplay("SMA Length", "Moving average length", "Reinitialization")
self._candle_type = self.Param("CandleType", DataType.TimeFrame(TimeSpan.FromHours(1))).SetDisplay("Candle Type", "Timeframe", "Data")
@property
def CandleType(self): return self._candle_type.Value
@CandleType.setter
def CandleType(self, value): self._candle_type.Value = value
def OnReseted(self):
super(re_init_chart_strategy, self).OnReseted()
self._prev_relation = 0
def OnStarted2(self, time):
super(re_init_chart_strategy, self).OnStarted2(time)
self._prev_relation = 0
sma = SimpleMovingAverage()
sma.Length = self._sma_length.Value
sub = self.SubscribeCandles(self.CandleType)
sub.Bind(sma, self.OnProcess).Start()
area = self.CreateChartArea()
if area is not None:
self.DrawCandles(area, sub)
self.DrawIndicator(area, sma)
self.DrawOwnTrades(area)
def OnProcess(self, candle, sma_val):
if candle.State != CandleStates.Finished:
return
close = candle.ClosePrice
if close > sma_val:
relation = 1
elif close < sma_val:
relation = -1
else:
relation = 0
if relation == 0 or relation == self._prev_relation:
self._prev_relation = relation
return
if relation > 0:
if self.Position < 0:
self.BuyMarket()
if self.Position <= 0:
self.BuyMarket()
elif relation < 0:
if self.Position > 0:
self.SellMarket()
if self.Position >= 0:
self.SellMarket()
self._prev_relation = relation
def CreateClone(self):
return re_init_chart_strategy()