Errors, bugs, questions - page 406

 
AlexSTAL:

Build 463 x64

I'm just in shock (positive)

The terminal with the experts hovering over it started loading in less than 30 seconds instead of 15-20 minutes (I didn't get it wrong) !

What have you tweaked there?



Ohhhh!!!


yes yes there was a glitch !

 
joo:
There are no standalone charts. But you can load data from a file into the indicator and draw candles - it will look like an ordinary chart with a tool. Then you can take information from the indicator and process it in the usual way.
It would be nice if someone could write such a thing in code base. It would be a good thing.
 
Renat:

What exactly is going on (screenshots, logs, descriptions) and on which antivirus exactly?

For our part we do everything right within reasonable limits and all our files are digitally signed. Antiviruses just don't like it when a program updates itself.



There were very bad lags, ONE window with a hovering pattern of 5-6 indicators, self-made, was loading in chunks like on an 8-bit, sorry,

it takes 2-3 minutes much slower than any build of mt4 ....


if there are a lot of these windows, launching mt5 took forever ... I have not checked the new build yet but hopefully they have corrected it ...

 
joo:
There are no standalone charts. But you can load data from a file into the indicator and draw candles - it will look like an ordinary chart with a tool. Then you can take information from the indicator and process it using conventional methods.



What about the alpari-ndd-real quotes, for example?


they are VERY different from demo... how to feed the same quality quotes to the mt5 terminal ... in real time ...

is it realistic to make a datafeed ?

 
tester_el_pro:

Flexibility of interface settings - there is a suggestion to make mt5 more flexible for the user, in terms of naming symbols, more specifically - the ability to rename any i.e. not - not gbpusd - but ... - For example - not gbpusd but ... pound," as well as the introduction of separating panels such as - currency and down arrow, metals, stocks, what would not have been all in one pile, in the bars, separating can even add mini icons, such as currency, the sign of a quid or a small green paper, metals - well gold small bars, etc. Approx. such flexibility settings colours, slates and panes available in the platform "Pro Trader", hopefully will not sound like advertising, because yours at the text of course easier and better... :)
It would also be nice if you could change the background, under the symbol in the list of symbols, as well as the colour shifter, for example a major highlight a black background and white font, medium, blue and white and totally unimportant, as there are black on white ...


no one has answered ... :(


can i get a screenshot of the new design of mt5 ... ?



maybe this will help .... ?

 
tester_el_pro:

is dataphit realistic ?

I think so.

tester_el_pro:

no one has answered ... :(

should i take a screenshot of the new design of mt5 ... ?

maybe this will help .... ?

The developers are very responsive to sensible and detailed suggestions, so go for it.

but this is a bug thread, for suggestions there is a special thread - Suggestions for MT5

 
Yedelkin:

So the serious problems are caused by the implementation of this option?

Exactly. The point is that the trade and the message queue are not synchronized in any way. One and the same ticket may receive a bunch of messages.

Moreover, when you receive the first message from this heap, you know nothing about the availability of further messages on the same ticket. You rushed to process a ticket modification, but the ticket already exists, it already in the history of closed positions. What to do? Unknown.

Now, when an impersonal trading event occurs, you can immediately know the current status of the open positions and the trading history. You do not have a ticket number and you have nothing to refer to but the current status.

 

Auto-scaling of the size of indicator symbols (e.g. arrows) does not work correctly enough.

At the maximum value of the time period displayed on the screen, the #property indicator_width property simply doesn't work.

The symbols are always displayed very small.

 
MoneyJinn:

Auto-scaling of the size of indicator symbols (e.g. arrows) does not work correctly enough.

At the maximum value of the time period displayed on the screen, the #property indicator_width property simply doesn't work.

The symbols are always displayed very small.



wo wo !!! and it's been like this for a long time !

 

The function for determining a new bar is taken from the article:

//+------------------------------------------------------------------+
//| Возвращает true, если появился новый бар для пары символ/период  |
//+------------------------------------------------------------------+
bool isNewBar()
  {
//--- в статической переменной будем помнить время открытия последнего бара
   static datetime last_time=0;
//--- текущее время
   datetime lastbar_time=SeriesInfoInteger(Symbol(),Period(),SERIES_LASTBAR_DATE);

//--- если это первый вызов функции
   if(last_time==0)
     {
      //--- установим время и выйдем 
      last_time=lastbar_time;
      return(false);
     }

//--- если время отличается
   if(last_time!=lastbar_time)
     {
      //--- запомним время и вернем true
      last_time=lastbar_time;
      return(true);
     }
//--- дошли до этого места - значит бар не новый, вернем false
   return(false);
  }

Why possible loss of data due to type conversion on datetime lastbar_time=SeriesInfoInteger("EURUSD",PERIOD_M1,SERIES_LASTBAR_DATE); ????

Reason: