//+--------------------------------------------------------------------+ //| Copyright: (C) 2014, Miroslav Popov - All rights reserved! | //| Website: http://forexsb.com/ | //| Support: http://forexsb.com/forum/ | //| License: Proprietary under the following circumstances: | //| | //| This code is a part of Forex Strategy Builder. It is free for | //| use as an integral part of Forex Strategy Builder. | //| One can modify it in order to improve the code or to fit it for | //| personal use. This code or any part of it cannot be used in | //| another applications without a permission. Contact information | //| cannot be changed. | //| | //| NO LIABILITY FOR CONSEQUENTIAL DAMAGES | //| | //| In no event shall the author be liable for any damages whatsoever | //| (including, without limitation, incidental, direct, indirect and | //| consequential damages, damages for loss of business profits, | //| business interruption, loss of business information, or other | //| pecuniary loss) arising out of the use or inability to use this | //| product, even if advised of the possibility of such damages. | //+--------------------------------------------------------------------+ #property copyright "Copyright 2014, Miroslav Popov" #property link "http://forexsb.com" #property version "1.00" #property strict #include #include //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ class NoNoIndicator : public Indicator { public: NoNoIndicator(SlotTypes slotType) { SlotType=slotType; IndicatorName="NoNo Indicator"; WarningMessage = ""; IsAllowLTF = true; ExecTime = ExecutionTime_DuringTheBar; IsSeparateChart = false; IsDiscreteValues = false; IsDeafultGroupAll = false; } virtual void Calculate(DataSet &dataSet); }; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void NoNoIndicator::Calculate(DataSet &dataSet) { Data=GetPointer(dataSet); // Saving the components ArrayResize(Component[0].Value,Data.Bars); ArrayInitialize(Component[0].Value, 0); Component[0].FirstBar=0; ArrayResize(Component[1].Value,Data.Bars); ArrayInitialize(Component[1].Value, 0); Component[1].FirstBar=0; // 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"; } } //+------------------------------------------------------------------+