//============================================================== // Forex Strategy Builder // Copyright © Miroslav Popov. All rights reserved. //============================================================== // THIS CODE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, // EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE. //============================================================== using System; using System.Drawing; using ForexStrategyBuilder.Infrastructure.Entities; using ForexStrategyBuilder.Infrastructure.Enums; using ForexStrategyBuilder.Infrastructure.Interfaces; namespace ForexStrategyBuilder.Indicators.Store { public class NoNoIndicator : Indicator { public NoNoIndicator() { IndicatorName = "NoNo Indicator"; PossibleSlots = SlotTypes.Open | SlotTypes.OpenFilter | SlotTypes.Close | SlotTypes.CloseFilter; IsGeneratable = false; IndicatorAuthor = "Miroslav Popov"; IndicatorVersion = "1.0"; IndicatorDescription = "The indicator doesn't rise signals."; } public override void Initialize(SlotTypes slotType) { SlotType = slotType; // ComboBox parameters IndParam.ListParam[0].Caption = "Logic"; if (SlotType == SlotTypes.Open) IndParam.ListParam[0].ItemList = new string[] { "No entry" }; else if (SlotType == SlotTypes.OpenFilter) IndParam.ListParam[0].ItemList = new string[] { "No signal" }; else if (SlotType == SlotTypes.Close) IndParam.ListParam[0].ItemList = new string[] { "No exit" }; else if (SlotType == SlotTypes.CloseFilter) IndParam.ListParam[0].ItemList = new string[] { "No signal" }; else IndParam.ListParam[0].ItemList = new string[] { "Not Defined" }; IndParam.ListParam[0].Index = 0; IndParam.ListParam[0].Text = IndParam.ListParam[0].ItemList[IndParam.ListParam[0].Index]; IndParam.ListParam[0].Enabled = true; IndParam.ListParam[0].ToolTip = "Logic of rule."; } public override void Calculate(IDataSet dataSet) { DataSet = dataSet; // Saving the components Component = new IndicatorComp[2]; Component[0] = new IndicatorComp(); Component[0].ChartType = IndChartType.NoChart; Component[0].FirstBar = 0; Component[0].Value = new double[Bars]; Component[1] = new IndicatorComp(); Component[1].ChartType = IndChartType.NoChart; Component[1].FirstBar = 0; Component[1].Value = new double[Bars]; // Sets the Component's type. if (SlotType == SlotTypes.Open) { Component[0].DataType = IndComponentType.OpenLongPrice; Component[0].CompName = "Long position entry price"; Component[1].DataType = IndComponentType.OpenShortPrice; Component[1].CompName = "Short position entry price"; } else if (SlotType == SlotTypes.OpenFilter) { Component[0].DataType = IndComponentType.AllowOpenLong; Component[0].CompName = "Is long entry allowed"; Component[1].DataType = IndComponentType.AllowOpenShort; Component[1].CompName = "Is short entry allowed"; } else if (SlotType == SlotTypes.Close) { Component[0].DataType = IndComponentType.CloseLongPrice; Component[0].CompName = "Long position closing price"; Component[1].DataType = IndComponentType.CloseShortPrice; Component[1].CompName = "Short position closing price"; } else if (SlotType == SlotTypes.CloseFilter) { Component[0].DataType = IndComponentType.ForceCloseLong; Component[0].CompName = "Close out long position"; Component[1].DataType = IndComponentType.ForceCloseShort; Component[1].CompName = "Close out short position"; } } public override void SetDescription() { EntryPointLongDescription = "No Entry"; EntryPointShortDescription = "No Entry"; EntryFilterLongDescription = "No Entry"; EntryFilterShortDescription = "No Entry"; ExitPointLongDescription = "No Exit"; ExitPointShortDescription = "No Exit"; ExitFilterLongDescription = "No Exit"; ExitFilterShortDescription = "No Exit"; } public override string ToString() { return IndicatorName; } } }