Errors, bugs, questions - page 2193

 
Aleksey Vyazmikin:
Does anyone know how to remove the name of the script and generally the icon in the top right corner when a screenshot is taken using the script?


called "."

 
Dmytro Zelenskyy:


called "."

Thanks, but I'd like to get rid of the badge...

 
Aleksey Vyazmikin:

Thanks, but I'd like to get rid of the badge...

Draw a black rectangle. Or a background colour.
 
Vladislav Andruschenko:
Draw a black rectangle. Or in the background colour.

How am I supposed to draw it over it? The icon is on top of everything...

And besides, there may be important information in this place, otherwise it could be removed by other applications...

 
Aleksey Vyazmikin:

How am I supposed to draw it over it? The icon is on top of everything...

And besides, there may be important information in this place, otherwise the icon can be removed by other applications...

You can try to run the script on one chart and use the id of the chart where you are shooting.

 
Dmytro Zelenskyy:

You could try running the script on one chart and substituting the id of the chart where you are shooting.

This is a good idea! However, how can we find the id of another chart that we need? Somewhere I saw an option of creating a new window and expanding the template that was previously saved from the chart from which the script was run... but where to find such a design now?

 
   long Tmp_ChartIDF = ChartFirst();
   
   Print(">>> ", __FUNCTION__, "  ChartFirst(). Tmp_ChartIDF= ", Tmp_ChartIDF);
   
   int nChartCount= 0;
   
   do
   {
      if(Tmp_ChartIDF != ChartID() )
      {
         nChartCount++;
         
         
        ChartSymbol(Tmp_ChartIDF), ";", 
        ChartPeriod(Tmp_ChartIDF) ), ";",
        
        
         
         Sleep(20);
      }
      
      
      
      Tmp_ChartIDF = ChartNext(Tmp_ChartIDF);
      
      Print(">>> ChartNext(Tmp_ChartIDF)= ", Tmp_ChartIDF);
   }
   while(Tmp_ChartIDF != -1 && !IsStopped() );
 

Going through all the charts, finding the symbol, the TF.

The code is ripped out of my owl, I need to straighten it out.

 
Dmytro Zelenskyy:

Going through all the charts, finding the symbol, the TF.

Took the code out of my owl, need to straighten it out.

Thanks - it's a good option if you close all the other charts, and leave only two. Well, in fact I use a dozen charts with one symbol and 2-3 with each TF :)

 
Aleksey Vyazmikin:

Thanks - it's a good option if you close all the other charts, and leave only two. Well, in fact I use a dozen charts with one symbol and 2-3 with each TF :)

Serious approach))

Well then right on the one you want to screen, on it you run a small script once, which gives id in a global variable (better a temporary global variable).

And your script screens by id.

Reason: