Anıl Özekşi tarafından oluşturulan indikatörde,
30 parametrelik değişken ho ile ott indikatörleri baz alınmıştır,
2 çizgiden oluşan indikatör birbirleriyle kesişimi ile al sat formüllerinde oluşturulabilir
using System;
using System.Collections.Generic;
using System.Linq;
using System.ComponentModel;
using Matriks.Data.Identifiers;
using Matriks.Data.Symbol;
using Matriks.Engines;
using Matriks.Indicators;
using Matriks.Symbols;
using Matriks.AlgoTrader;
using Matriks.Trader.Core;
using Matriks.Trader.Core.Fields;
using Matriks.Trader.Core.TraderModels;
using Matriks.Lean.Algotrader.AlgoBase;
using Matriks.Lean.Algotrader.Models;
using Matriks.Lean.Algotrader.Trading;
namespace Matriks.Lean.Algotrader
{
//Ilk parametre indikatörün adı, sınıfın adıyla aynı olmalıdır.
//Ikinci parametre indikatörün Dataserisinin üzerine mi yeni pencereye mi ekleneceğini belirtir. Yeni pencere için ->IndicatorDrawingArea.NewWindow , Data Serisi için IndicatorDrawingArea.OnDataSeries
[IndicatorInformationAttribute("ROTTKripex", IndicatorDrawingArea.NewWindow)]
//Indikatörün çizgilerinin isimleri
[IndicatorLineInformationAttribute(new []
{
"ROTTMov (0)", "OTT (1,2,3)"
})]
public class ROTTKripex : MatriksIndicator
{
//Indicator opsiyon panelinde değerleri değiştirebildiğimiz parametreler. Int, Bool, Decimal ve Enum değerleri alabilir.Tüm değişken tiplerini DefaultValue ile tanımlarız.
[DefaultValue(1000)]
public int X1
{
get; set;
}
[DefaultValue(2)]
public int OttPeriod
{
get; set;
}
[DefaultValue(1.4)]
public decimal Opt
{
get; set;
}
[DefaultValue(MovMethod.VAR)]
public MovMethod MovMethod
{
get; set;
}
MOV mov;
OTT ott;
public sealed override void OnInit()
{
mov = MOVIndicator(Symbol, SymbolPeriod, OHLCType.Close, X1, MovMethod);
ott = new OTT(OttPeriod, Opt, MovMethod, true);
}
public override void OnDataUpdate(int currentBar, decimal inputValue, DateTime barDateTime)
{
if (currentBar < X1)
{
SetLine(0, currentBar, 0);
SetLine(1, currentBar, 0);
ott.Update(0, currentBar, barDateTime);
return ;
}
ott.Update(2 * mov.CurrentValue, currentBar, barDateTime);
SetLine(0, currentBar, 2 * mov.CurrentValue);
SetLine(1, currentBar, ott.CurrentValue);
}
}
}