//+------------------------------------------------------------------+ //| DeMarker_HTF.mq5 | //| Copyright © 2006, ycomp | //| | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, ycomp" #property link "" //--- Indicator version number #property version "1.00" #property description "DeMarker" //--- drawing indicator in a separate window #property indicator_separate_window //--- number of indicator buffers is 1 #property indicator_buffers 1 //--- only one plot is used #property indicator_plots 1 //+----------------------------------------------+ //| Parameters of displaying horizontal levels | //+----------------------------------------------+ #property indicator_level1 0.7 #property indicator_level2 0.5 #property indicator_level3 0.3 #property indicator_levelcolor clrGray #property indicator_levelstyle STYLE_DASHDOTDOT //+----------------------------------------------+ //| Parameters of displaying window borders | //+----------------------------------------------+ #property indicator_maximum +1.0 #property indicator_minimum 0.0 //+----------------------------------------------+ //| declaring constants | //+----------------------------------------------+ #define RESET 0 // The constant for returning the indicator recalculation command to the terminal #define INDICATOR_NAME "iDeMarker" // The constant for the indicator name //+----------------------------------------------+ //| Indicator drawing parameters | //+----------------------------------------------+ //--- drawing the indicator 1 as a symbol #property indicator_type1 DRAW_SECTION //--- the following colors are used as the indicator colors #property indicator_color1 clrDeepPink //--- indicator 1 line width is equal to 2 #property indicator_width1 2 //--- displaying the indicator label #property indicator_label1 INDICATOR_NAME //+-------------------------------------+ //| Indicator input parameters | //+-------------------------------------+ input ENUM_TIMEFRAMES TimeFrame=PERIOD_H4; // Chart period input uint DeMarker_Period=14; // Averaging period input int Shift=0; // Horizontal shift of the indicator in bars //+-------------------------------------+ //--- declaration of dynamic arrays that further will be used as indicator buffers double IndBuffer[]; //--- declaration of a variable for storing the indicator initialization result bool Init; //--- declaration of strings string Symbol_; //--- declaration of integer variables for indicators handles int Ind_Handle; //--- declaration of integer variables of data starting point int min_rates_total; //+------------------------------------------------------------------+ //| Getting the string timeframe | //+------------------------------------------------------------------+ string GetStringTimeframe(ENUM_TIMEFRAMES timeframe) { //--- return(StringSubstr(EnumToString(timeframe),7,-1)); //--- } //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int OnInit() { Init=true; //--- Checking correctness of the chart periods if(TimeFramerates_total || prev_calculated<=0)// checking for the first start of calculation of an indicator { limit=rates_total-min_rates_total-2; // starting index for the calculation of all bars LastCountBar=limit; } else limit=int(LastCountBar)+rates_total-prev_calculated; // starting index for the calculation of new bars //--- indexing elements in arrays as in timeseries ArraySetAsSeries(time,true); //--- main cycle of calculation of the indicator for(bar=limit; bar>=0 && !IsStopped(); bar--) { //--- zero out the contents of the indicator buffers for the calculation IndBuffer[bar+1]=EMPTY_VALUE; //--- copy new data to the iTime array if(CopyTime(Symbol_,TimeFrame,time[bar],1,iTime)<=0) return(RESET); if(time[bar]>=iTime[0] && time[bar+1]