//+------------------------------------------------------------------+ //| lot profit.mq4 | //| Copyright © 2016, http://cmillion.ru | //| cmillion@narod.ru | //+------------------------------------------------------------------+ #property copyright "Copyright © 2016, http://cmillion.ru" #property link "cmillion@narod.ru" #property description "Индикатор показывает суммарный лот и профит по текущему инструменту" #property version "1.00" #property strict #property indicator_chart_window //+------------------------------------------------------------------+ string val; //+------------------------------------------------------------------+ int OnInit() { val=" "+AccountCurrency(); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ 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[]) { //--- double Profit=0,ProfitB=0,ProfitS=0; double LotB=0,LotS=0; int i,b=0,s=0,tip; for(i=0; i0?clrGreen:clrGray); DrawLABEL("cm sell Lot" ,StringConcatenate("Sell ",DoubleToStr(LotS,2)," лот"),100,35,LotS>0?clrGreen:clrGray); DrawLABEL("cm buy Profit" ,StringConcatenate(DoubleToStr(ProfitB,2),val),10,20,ProfitB>0?clrGreen:clrRed); DrawLABEL("cm sell Profit" ,StringConcatenate(DoubleToStr(ProfitS,2),val),10,35,ProfitS>0?clrGreen:clrRed); return(rates_total); } //+------------------------------------------------------------------+ void OnDeinit(const int reason) { ObjectsDeleteAll(0,"cm"); } //+------------------------------------------------------------------+ void DrawLABEL(string name,string Name,int X,int Y,color clr) { if(ObjectFind(name)==-1) { ObjectCreate(name,OBJ_LABEL,0,0,0); ObjectSet(name,OBJPROP_CORNER,1); ObjectSet(name,OBJPROP_XDISTANCE,X); ObjectSet(name,OBJPROP_YDISTANCE,Y); } ObjectSetText(name,Name,10,"Arial",clr); } //--------------------------------------------------------------------