//+------------------------------------------------------------------+ //| ASCtrend_HTF_Signal.mq5 | //| Copyright © 2011, Nikolay Kositsin | //| Khabarovsk, farria@mail.redcom.ru | //+------------------------------------------------------------------+ #property copyright "Copyright © 2011, Nikolay Kositsin" #property link "farria@mail.redcom.ru" //--- indicator version #property version "1.01" //+----------------------------------------------+ //| Indicator drawing parameters | //+----------------------------------------------+ //--- drawing the indicator in the main window #property indicator_chart_window #property indicator_buffers 0 #property indicator_plots 0 //+-----------------------------------+ //| Declaration of constants | //+-----------------------------------+ #define RESET 0 // the constant for getting the command for the indicator recalculation back to the terminal //+-----------------------------------+ //| Indicator input parameters | //+-----------------------------------+ input string Symbol_=""; // Financial asset input ENUM_TIMEFRAMES Timeframe=PERIOD_H6; // Indicator timeframe for the indicator calculation input int RISK=4; //--- indicator display settings input string symbols_Sirname="ASCtrend_Label_"; // Indicator labels name input color Upsymbol_Color=Lime; // Growth symbol color input color Dnsymbol_Color=Red; // Downfall symbol color input color IndName_Color=DarkOrchid; // Indicator name color input uint symbols_Size=60; // Signal symbols size input uint Font_Size=10; // Indicator name font size input int X_1=5; // Horizontal shift of the name input int Y_1=-15; // Vertical shift of the name input bool ShowIndName=true; // Indicator name display input ENUM_BASE_CORNER WhatCorner=CORNER_RIGHT_UPPER; // Location corner input uint X_=0; // Horizontal shift input uint Y_=20; // Vertical shift //--- declaration of variables for the indicators handles int ASCtrend_Handle; //--- declaration of the integer variables for the start of data calculation int min_rates_total; //--- declaration of integer variables of the indices horizontal and vertical location uint X_0,Yn,X_1_,Y_1_; //--- declaration of variables for labels names string name0,name1,IndName,Symb; //+------------------------------------------------------------------+ //| Getting string timeframe | //+------------------------------------------------------------------+ string GetStringTimeframe(ENUM_TIMEFRAMES timeframe) { //--- return(StringSubstr(EnumToString(timeframe),7,-1)); //--- } //+------------------------------------------------------------------+ //| Creation of a text label | //+------------------------------------------------------------------+ void CreateTLabel(long chart_id, // chart ID string name, // object name int nwin, // window index ENUM_BASE_CORNER corner, // base corner location ENUM_ANCHOR_POINT point, // anchor point location int X, // the distance from the base corner along the X-axis in pixels int Y, // the distance from the base corner along the Y-axis in pixels string text, // text color Color, // text color string Font, // text font int Size) // font size { //--- ObjectCreate(chart_id,name,OBJ_LABEL,0,0,0); ObjectSetInteger(chart_id,name,OBJPROP_CORNER,corner); ObjectSetInteger(chart_id,name,OBJPROP_ANCHOR,point); ObjectSetInteger(chart_id,name,OBJPROP_XDISTANCE,X); ObjectSetInteger(chart_id,name,OBJPROP_YDISTANCE,Y); ObjectSetString(chart_id,name,OBJPROP_TEXT,text); ObjectSetInteger(chart_id,name,OBJPROP_COLOR,Color); ObjectSetString(chart_id,name,OBJPROP_FONT,Font); ObjectSetInteger(chart_id,name,OBJPROP_FONTSIZE,Size); ObjectSetInteger(chart_id,name,OBJPROP_BACK,true); ObjectSetString(chart_id,name,OBJPROP_TOOLTIP, "\n"); // tooltip disabling ObjectSetInteger(chart_id,name,OBJPROP_BACK,true); // background object //--- } //+------------------------------------------------------------------+ //| Text label reinstallation | //+------------------------------------------------------------------+ void SetTLabel(long chart_id, // chart ID string name, // object name int nwin, // window index ENUM_BASE_CORNER corner, // base corner location ENUM_ANCHOR_POINT point, // anchor point location int X, // the distance from the base corner along the X-axis in pixels int Y, // the distance from the base corner along the Y-axis in pixels string text, // text color Color, // text color string Font, // text font int Size) // font size { //--- if(ObjectFind(chart_id,name)==-1) { CreateTLabel(chart_id,name,nwin,corner,point,X,Y,text,Color,Font,Size); } else { ObjectSetString(chart_id,name,OBJPROP_TEXT,text); ObjectSetInteger(chart_id,name,OBJPROP_XDISTANCE,X); ObjectSetInteger(chart_id,name,OBJPROP_YDISTANCE,Y); ObjectSetInteger(chart_id,name,OBJPROP_COLOR,Color); ObjectSetInteger(chart_id,name,OBJPROP_FONTSIZE,Size); } //--- } //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int OnInit() { //--- initialization of variables of the start of data calculation min_rates_total=int(MathMax(3+RISK*2,4)+1); //--- initialization of variables if(Symbol_!="") Symb=Symbol_; else Symb=Symbol(); //--- X_0=X_; Yn=Y_+5; //--- name0=symbols_Sirname+"0"; if(ShowIndName) { Y_1_=Yn+Y_1; X_1_=X_0+X_1; name1=symbols_Sirname+"1"; StringConcatenate(IndName,"ASCtrend(",Symb," ",GetStringTimeframe(Timeframe),")"); } //--- getting handle of the ASCtrend indicator ASCtrend_Handle=iCustom(Symb,Timeframe,"ASCtrend",RISK); if(ASCtrend_Handle==INVALID_HANDLE) { Print(" Failed to get handle of the ASCtrend indicator"); return(INIT_FAILED); } //--- initializations of a variable for the indicator short name string shortname; StringConcatenate(shortname,"ASCtrend( ",RISK," )"); //--- creation of the name to be displayed in a separate sub-window and in a tooltip IndicatorSetString(INDICATOR_SHORTNAME,shortname); //--- determination of accuracy of displaying the indicator values IndicatorSetInteger(INDICATOR_DIGITS,_Digits+1); //--- initialization end return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ void Deinit() { //--- if(ObjectFind(0,name0)!=-1) ObjectDelete(0,name0); if(ObjectFind(0,name1)!=-1) ObjectDelete(0,name1); //--- } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { //--- Deinit(); //--- ChartRedraw(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int OnCalculate(const int rates_total, // number of bars in history at the current tick const int prev_calculated,// number of bars calculated at previous call 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 the number of bars to be enough for the calculation if(BarsCalculated(ASCtrend_Handle)rates_total || prev_calculated<=0)// checking for the first start of the indicator calculation { prev_time=time[0]; trend_=0; } rates_time=TimeCurrent(); //--- copy newly appeared data in the arrays if(CopyBuffer(ASCtrend_Handle,0,rates_time,prev_time,DnASC)<=0) return(RESET); if(CopyBuffer(ASCtrend_Handle,1,rates_time,prev_time,UpASC)<=0) return(RESET); //--- calculations of the 'limit' starting index for the bars recalculation loop limit=ArraySize(UpASC)-1; trend=trend_; //--- indexing elements in arrays as timeseries ArraySetAsSeries(DnASC,true); ArraySetAsSeries(UpASC,true); //--- main indicator calculation loop for(int bar=limit; bar>=0 && !IsStopped(); bar--) { if(UpASC[bar]) {trend=+1; if(!bar) signal=true;} if(DnASC[bar]) {trend=-1; if(!bar) signal=true;} if(bar) trend_=trend; } //--- if(trend>0) { Color0=Upsymbol_Color; if(signal) SignSymbol="ã"; else SignSymbol="p"; } //--- if(trend<0) { Color0=Dnsymbol_Color; if(signal) SignSymbol="ä"; else SignSymbol="q"; } //--- if(trend) { if(ShowIndName) SetTLabel(0,name1,0,WhatCorner,ENUM_ANCHOR_POINT(2*WhatCorner),X_1_,Y_1_,IndName,IndName_Color,"Georgia",Font_Size); SetTLabel(0,name0,0,WhatCorner,ENUM_ANCHOR_POINT(2*WhatCorner),X_0,Yn,SignSymbol,Color0,"Wingdings 3",symbols_Size); } else Deinit(); //--- ChartRedraw(0); prev_time=TIME[0]; //--- return(rates_total); } //+------------------------------------------------------------------+