//+--------------------------------------------------------------------------+ //| X4Period_WPR_Arrows.mq5 | //| Copyright © 2005, transport_david | //| http://finance.groups.yahoo.com/group/MetaTrader_Experts_and_Indicators/ | //+--------------------------------------------------------------------------+ //--- copyright #property copyright "Copyright © 2005, transport_david" //--- a link to the website of the author #property link "http://finance.groups.yahoo.com/group/MetaTrader_Experts_and_Indicators/" //--- indicator version #property version "1.00" //--- drawing the indicator in the main window #property indicator_chart_window //--- eight buffers are used for the calculation and drawing of the indicator #property indicator_buffers 8 //--- eight graphical plots are used #property indicator_plots 8 //+----------------------------------------------+ //| Parameters of drawing a bearish indicator 1 | //+----------------------------------------------+ //--- drawing the indicator 1 as a symbol #property indicator_type1 DRAW_ARROW //--- pink is used for the color of the bearish indicator line #property indicator_color1 clrHotPink //--- indicator 1 line width is equal to 2 #property indicator_width1 2 //--- display of the indicator bullish label #property indicator_label1 "X4Period_WPR_Arrows Sell 1" //+----------------------------------------------+ //| Parameters of drawing a bullish indicator 2 | //+----------------------------------------------+ //--- drawing the indicator 2 as a symbol #property indicator_type2 DRAW_ARROW //--- green color is used as the color of the indicator bullish line #property indicator_color2 clrDarkTurquoise //--- indicator 2 line width is equal to 2 #property indicator_width2 2 //--- display of the bearish indicator label #property indicator_label2 "X4Period_WPR_Arrows Buy 1" //+----------------------------------------------+ //| Parameters of drawing a bearish indicator 2 | //+----------------------------------------------+ //--- drawing the indicator 3 as a symbol #property indicator_type3 DRAW_ARROW //--- pink is used for the color of the bearish indicator line #property indicator_color3 clrHotPink //--- indicator 3 line width is equal to 2 #property indicator_width3 2 //--- display of the indicator bullish label #property indicator_label3 "X4Period_WPR_Arrows Sell 2" //+----------------------------------------------+ //| Parameters of drawing a bullish indicator 2 | //+----------------------------------------------+ //--- drawing indicator 4 as a symbol #property indicator_type4 DRAW_ARROW //--- green color is used as the color of the indicator bullish line #property indicator_color4 clrDarkTurquoise //--- indicator 4 line width is equal to 2 #property indicator_width4 2 //--- display of the bearish indicator label #property indicator_label4 "X4Period_WPR_Arrows Buy 2" //+----------------------------------------------+ //| Parameters of drawing a bearish indicator 3 | //+----------------------------------------------+ //--- drawing the indicator 5 as a symbol #property indicator_type5 DRAW_ARROW //--- pink is used for the color of the bearish indicator line #property indicator_color5 clrHotPink //--- indicator 5 line width is equal to 2 #property indicator_width5 2 //--- display of the indicator bullish label #property indicator_label5 "X4Period_WPR_Arrows Sell 3" //+----------------------------------------------+ //| Parameters of drawing a bullish indicator 3 | //+----------------------------------------------+ //--- drawing the indicator 6 as a symbol #property indicator_type6 DRAW_ARROW //--- green color is used as the color of the indicator bullish line #property indicator_color6 clrDarkTurquoise //--- indicator 6 line width is equal to 2 #property indicator_width6 2 //--- display of the bearish indicator label #property indicator_label6 "X4Period_WPR_Arrows Buy 3" //+----------------------------------------------+ //| Parameters of drawing a bearish indicator 4 | //+----------------------------------------------+ //--- drawing the indicator 7 as a symbol #property indicator_type7 DRAW_ARROW //--- pink is used for the color of the bearish indicator line #property indicator_color7 clrHotPink //--- indicator 7 line width is equal to 2 #property indicator_width7 2 //--- display of the indicator bullish label #property indicator_label7 "X4Period_WPR_Arrows Sell 4" //+----------------------------------------------+ //| Parameters of drawing a bullish indicator 4 | //+----------------------------------------------+ //--- drawing the indicator 8 as a symbol #property indicator_type8 DRAW_ARROW //--- green color is used as the color of the indicator bullish line #property indicator_color8 clrDarkTurquoise //--- indicator 8 line width is equal to 2 #property indicator_width8 2 //--- display of the bearish indicator label #property indicator_label8 "X4Period_WPR_Arrows Buy 4" //+----------------------------------------------+ //| declaration of constants | //+----------------------------------------------+ #define RESET 0 // a constant for retuning the indicator recalculation command to the terminal //+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ input int WPRKperiod1=5; // Period 1 input int WPRKperiod2=7; // Period 2 input int WPRKperiod3=11; // Period 3 input int WPRKperiod4=17; // Period 4 input int rsiUpperTrigger=-20; // Overbought level input int rsiLowerTrigger=-80; // Oversold level input uint Size=2; // Vertical distance between the icons //+----------------------------------------------+ //--- declaration of dynamic arrays that //--- will be used as indicator buffers double SellBuffer1[],BuyBuffer1[]; double SellBuffer2[],BuyBuffer2[]; double SellBuffer3[],BuyBuffer3[]; double SellBuffer4[],BuyBuffer4[]; //--- declaration of integer variables for the indicators handles int ATR_Handle,WPR_Handle[4]; //--- declaration of integer variables for the start of data calculation int min_rates_total; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int OnInit() { //--- initialization of global variables int ATR_Period=15; min_rates_total=int(MathMax(ATR_Period,WPRKperiod1)); min_rates_total=int(MathMax(min_rates_total,WPRKperiod2)); min_rates_total=int(MathMax(min_rates_total,WPRKperiod3)); min_rates_total=int(MathMax(min_rates_total,WPRKperiod4)); //--- Getting the handle of the ATR indicator ATR_Handle=iATR(NULL,0,ATR_Period); if(ATR_Handle==INVALID_HANDLE) { Print(" Failed to get handle of the ATR indicator"); return(INIT_FAILED); } //--- getting the handle of the iWPR 1 indicator WPR_Handle[0]=iWPR(NULL,0,WPRKperiod1); if(WPR_Handle[0]==INVALID_HANDLE) { Print(" Failed to get handle of the iWPR 1 indicator"); return(INIT_FAILED); } //--- getting the handle of the iWPR 2 indicator WPR_Handle[1]=iWPR(NULL,0,WPRKperiod2); if(WPR_Handle[1]==INVALID_HANDLE) { Print(" Failed to get handle of the iWPR 2 indicator"); return(INIT_FAILED); } //--- getting the handle of the iWPR 3 indicator WPR_Handle[2]=iWPR(NULL,0,WPRKperiod3); if(WPR_Handle[2]==INVALID_HANDLE) { Print(" Failed to get handle of the iWPR 3 indicator"); return(INIT_FAILED); } //--- getting the handle of the iWPR 4 indicator WPR_Handle[3]=iWPR(NULL,0,WPRKperiod4); if(WPR_Handle[3]==INVALID_HANDLE) { Print(" Failed to get handle of the iWPR 4 indicator"); return(INIT_FAILED); } //--- set dynamic arrays as indicator buffers InitTsIndArrBuffer(0,0,SellBuffer1,0.0,min_rates_total); InitTsIndArrBuffer(1,1,BuyBuffer1,0.0,min_rates_total); InitTsIndArrBuffer(2,2,SellBuffer2,0.0,min_rates_total); InitTsIndArrBuffer(3,3,BuyBuffer2,0.0,min_rates_total); InitTsIndArrBuffer(4,4,SellBuffer3,0.0,min_rates_total); InitTsIndArrBuffer(5,5,BuyBuffer3,0.0,min_rates_total); InitTsIndArrBuffer(6,6,SellBuffer4,0.0,min_rates_total); InitTsIndArrBuffer(7,7,BuyBuffer4,0.0,min_rates_total); //--- setting the format of accuracy of displaying the indicator IndicatorSetInteger(INDICATOR_DIGITS,_Digits); //--- name for the data window and the label for sub-windows string short_name="X4Period_WPR_Arrows"; IndicatorSetString(INDICATOR_SHORTNAME,short_name); //--- initialization end return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Initialization of time series indicator buffer | //+------------------------------------------------------------------+ void InitTsIndArrBuffer(int Number,int Plot,double &IndBuffer[],double Empty_Value,int Draw_Begin) { //--- set dynamic array as an indicator buffer SetIndexBuffer(Number,IndBuffer,INDICATOR_DATA); //--- shifting the start of drawing of the indicator PlotIndexSetInteger(Plot,PLOT_DRAW_BEGIN,Draw_Begin); //--- setting the indicator values that won't be visible on a chart PlotIndexSetDouble(Plot,PLOT_EMPTY_VALUE,Empty_Value); //--- selecting symbol for drawing PlotIndexSetInteger(Plot,PLOT_ARROW,167); //--- indexing elements in the buffer as in timeseries ArraySetAsSeries(IndBuffer,true); //--- } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { //--- checking if the number of bars is enough for the calculation if(BarsCalculated(ATR_Handle)rates_total || prev_calculated<=0)// checking for the first start of calculation of an indicator { limit=rates_total-min_rates_total; // starting index for the calculation of all bars } else { limit=rates_total-prev_calculated; // starting index for the calculation of new bars } to_copy=limit+1; //--- copy newly appeared data in the arrays if(CopyBuffer(WPR_Handle[0],0,0,to_copy,WPR1)<=0) return(RESET); if(CopyBuffer(WPR_Handle[1],0,0,to_copy,WPR2)<=0) return(RESET); if(CopyBuffer(WPR_Handle[2],0,0,to_copy,WPR3)<=0) return(RESET); if(CopyBuffer(WPR_Handle[3],0,0,to_copy,WPR4)<=0) return(RESET); if(CopyBuffer(ATR_Handle,0,0,to_copy,ATR)<=0) return(RESET); //--- apply timeseries indexing to array elements ArraySetAsSeries(WPR1,true); ArraySetAsSeries(WPR2,true); ArraySetAsSeries(WPR3,true); ArraySetAsSeries(WPR4,true); ArraySetAsSeries(ATR,true); ArraySetAsSeries(high,true); ArraySetAsSeries(low,true); //--- main calculation loop of the indicator for(bar=limit; bar>=0 && !IsStopped(); bar--) { BuyBuffer1[bar]=0.0; SellBuffer1[bar]=0.0; BuyBuffer2[bar]=0.0; SellBuffer2[bar]=0.0; BuyBuffer3[bar]=0.0; SellBuffer3[bar]=0.0; BuyBuffer4[bar]=0.0; SellBuffer4[bar]=0.0; //--- if(WPR1[bar]rsiUpperTrigger) BuyBuffer1[bar]=low[bar]-ATR[bar]*(Size+1)/8; //--- if(WPR2[bar]rsiUpperTrigger) BuyBuffer2[bar]=low[bar]-ATR[bar]*(2*Size+1)/8; //--- if(WPR3[bar]rsiUpperTrigger) BuyBuffer3[bar]=low[bar]-ATR[bar]*(3*Size+1)/8; //--- if(WPR4[bar]rsiUpperTrigger) BuyBuffer4[bar]=low[bar]-ATR[bar]*(4*Size+1)/8; } //--- return(rates_total); } //+------------------------------------------------------------------+