multi accounts live overview

 

Hi,

i´m running 10 MT5 instances on my Win11 Laptop. 

To get an live overview regarding my profit/loss of each account i actualy open every instance of the MT5 with the Toolbox open and 

resize the terminal window to the minimal size so that i can see at the right bottom the live P/L.

If i want to take action i just click on the top right corner of the terminal window to maximize the window.

(see attached photo)

I want to get rid of all the other distracting buttons/infos etc.

Any tools / tips / suggestions to optimize my procedure ?


Thanks for help.

Thomas

Files:
 
write a simple EA/Script/Service that save that info to a file for each account.
good luck.
 
Hi

You can also write a script which display the  profit value on the chart so you could not who terminal withal the buttons at all just show profit on the chart. Something like that: 

   string name = “#profit”;
   long cId = ChartID();
double profit = AccountEquity()-AccountBalance();
string profits = DoubleToString(profit, 2)+”$”;
   if(ObjectFind(cId, name)<0){
      ObjectCreate(cId, name, OBJ_LABEL, 0,0,0);
      ObjectSetInteger(cId, name,OBJPROP_ANCHOR, ANCHOR_RIGHT_UPPER);  
      ObjectSetInteger(cId, name,OBJPROP_BACK,false); 
      ObjectSetInteger(cId,name,OBJPROP_CORNER, CORNER_RIGHT_UPPER);
      ObjectSetInteger(cId,name,OBJPROP_XDISTANCE,5);
      ObjectSetInteger(cId,name,OBJPROP_YDISTANCE,10);
ObjectSetInteger(cId, name,OBJPROP_COLOR,clrRed); 
        ObjectSetInteger(cId, name,OBJPROP_FONTSIZE, 30);

   }
ObjectSetString(cId, name,OBJPROP_TEXT, profits);  

Have a nice day👍📊