31.01.2022
0
2
194
100


Bu indikatörün ana çizgisi sıfırın etrafında hareket eder. Histogram olarak çizilmiştir. 

AL-SAT sinyalleri için ilk seçenek, ana çizginin sıfırın altına inmesi ve üstüne çıkması durumuna göre strateji oluşturmaktır. 

Buradaki 2. Çizgi ise, ana çizginin hareketli ortalamasıdır. 

İkinci seçenek ise, AL-SAT yerlerine ana çizgi ile ortalamasının kesişmesine göre karar vermektir. 


Her 2 durum için de stratejiler oluşturmak, algoritma sihirbazı ile oldukça kolay olacaktır. 

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;
using System.Windows.Media;
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("SQMIV2Kripex", IndicatorDrawingArea.NewWindow)]
	//Indikatörün çizgilerinin isimleri
	[IndicatorLineInformationAttribute(new []
		{
			"SQMI (0,1)", "Signal (2,3)"
		}, new []
		{
			"#ffffff", "#ffffff"
		}, new []
		{
			false, false
		}, new []
		{
			5, 0
		}, new []
		{
			1, 2
		}
	)]

	public class SQMIV2Kripex : MatriksIndicator
	{
		[DefaultValue(20)]
		public int KCperiod
		{
			get; set;
		}

		[DefaultValue(1.5)]
		public decimal KCfactor
		{
			get; set;
		}

		[DefaultValue(5)]
		public int SignalPeriod
		{
			get; set;
		}

		[DefaultValue(MovMethod.S)]
		public MovMethod MovMethod
		{
			get; set;
		}

		MOV mov;

		LRL lrl;

		MOV KCma, rangema;

		BOLLINGER bb;

		public sealed override void OnInit()
		{
			mov = new MOV(SignalPeriod, MovMethod);

			lrl = new LRL(KCperiod);

			KCma = MOVIndicator(Symbol, SymbolPeriod, OHLCType.Close, KCperiod, MovMethod.Simple);
			rangema = new MOV(KCperiod, MovMethod.Simple);

			DrawHorizantal(0);
		}

		decimal close, range, upperKC, lowerKC, SQMI;
		public override void OnDataUpdate(int currentBar, decimal inputValue, DateTime barDateTime)
		{
			if (Instrument.SymbolBarData.Close.ContainsKey(currentBar))
			{
				range = Instrument.SymbolBarData.High[currentBar] - Instrument.SymbolBarData.Low[currentBar];
				close = Instrument.SymbolBarData.Close[currentBar];
			}

			rangema.Update(range, currentBar, barDateTime);

			lrl.Update(close - (((HighestHigh(OHLCType.High, KCperiod) + LowestLow(OHLCType.Low, KCperiod)) / 2) + KCma.CurrentValue) / 2, currentBar, barDateTime);

			mov.Update(lrl.CurrentValue, currentBar, barDateTime);

			if (currentBar < KCperiod)
			{
				SetLine(0, currentBar, 0);
				SetLine(1, currentBar, 0);
				return ;
			}

			SetLine(currentBar, lrl.CurrentValue);
			SetLine(1, currentBar, mov.CurrentValue);

			if (lrl.CurrentValue>0)
			{
				PaintPoint(currentBar, lrl.Value[0][lrl.CurrentIndex -1] >lrl.Value[0][lrl.CurrentIndex] ? Colors.Lime.ToString() :Colors.Green.ToString(), 0);
			}else
			{
				PaintPoint(currentBar, lrl.Value[0][lrl.CurrentIndex -1] <lrl.Value[0][lrl.CurrentIndex] ? Colors.Red.ToString() :Colors.Maroon.ToString(), 0);
			}
		}
	}
}

0 Yorum