MetaTrader 4 Build 529 beta released with new compiler - page 130

 
Greetings!

When can we expect the new Bild?

I am currently testing the 560.

I found a Bug on the market ... indicator if downloaded as a demo ... then the terminal tries to run the indicator in the tester, the terminal opens and then a couple of seconds later MT4 crashes.

More questions...

Directory C:\ProgramData\MetaQuotes is empty...

Another directory contains C:\Users\MyName\AppData\Roaming\MetaQuotes

This directory contains files from new MT4 build only... or are there files from 509 build?

I didn't notice this directory before... I only knew about C:\ProgramData\MetaQuotes... I used to clean WebInstall when installing/re-installing terminals of different DCs so that all of them were loaded individually.

Now what manipulations are foreseen in this regard and/or what can be done in this regard?

Is it possible to delete directory C:\Users\MyName\AppData\Roaming\MetaQuotes completely after uninstall to install/reinstall everything from scratch ? ?

How do I reinstall help? Can help files from \AppData\Roaming\MetaQuotes\WebInstall\mt4clw only be deleted to load new files... ?

Is help updated along with the new Builds or is it done asynchronously?

When is the official release of the new build MT4 with global upgrade of the terminal on all brokerage companies... at least tentatively when to wait (month, half a year, year, etc.) ?
 
BorisMQL4:
Greetings!

When can we expect the new Bild?

I am currently testing the 560.

I found a Bug on the market ... indicator if downloaded as Demo ... terminal tries to run the indicator in tester, terminal opens and then after a couple of seconds MT4 crashes.

Thanks for the feedback, it was reproduced.
 
property indicator_chart_window
#property indicator_buffers 6

#property   indicator_color1  clrRed
#property   indicator_color2  clrDarkGreen
#property   indicator_color3  clrBlack
#property   indicator_color4  clrDodgerBlue
#property   indicator_color5  clrDodgerBlue
#property   indicator_color6  clrDodgerBlue

#property   indicator_width1  1
#property   indicator_width2  1
#property   indicator_width3  2
#property   indicator_width4  1
#property   indicator_width5  1
#property   indicator_width6  1


extern int    Bperiod    = 21   ;
extern int    Ma1_period = 8     ;
extern int    Ma2_period = 30    ;
extern int    Ma3_period = 100   ;


double     ExtBuffer0[];
double     ExtBuffer1[];
double     ExtBuffer2[];
double     ExtBuffer3[];
double     ExtBuffer4[];
double     ExtBuffer5[];
//======================================================================================================================//
void init()
  {

SetIndexStyle (0,DRAW_LINE);
SetIndexBuffer(0, ExtBuffer0 ); // буфер для первой линии
SetIndexLabel (0,"ExtBuffer0");

SetIndexStyle (1,DRAW_LINE);
SetIndexBuffer(1, ExtBuffer1 ); 
SetIndexLabel (1,"ExtBuffer1");

SetIndexStyle (2,DRAW_LINE);
SetIndexBuffer(2, ExtBuffer2 ); 
SetIndexLabel (2,"ExtBuffer2");

SetIndexStyle (3,DRAW_LINE);
SetIndexBuffer(3, ExtBuffer3 ); 
SetIndexLabel (3,"ExtBuffer3");

SetIndexStyle (4,DRAW_LINE);
SetIndexBuffer(4, ExtBuffer4 ); 
SetIndexLabel (4,"ExtBuffer4");

SetIndexStyle (5,DRAW_LINE);
SetIndexBuffer(5, ExtBuffer5 ); 
SetIndexLabel (5,"ExtBuffer5");
}
//======================================================================================================================//
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[])
  {
   int limit=rates_total-prev_calculated;
   int rez=1440/_Period;

     for(int x=0; x<limit; x++)
       {
            ExtBuffer0[x]=iMA(NULL,0,Ma1_period,0,2,0,x);
            ExtBuffer1[x]=iMA(NULL,0,Ma2_period,0,1,0,x);
            ExtBuffer2[x]=iMA(NULL,0,Ma3_period,0,3,0,x);

            ExtBuffer3[x]=iBands(NULL,0,Bperiod*rez,2,0,0,MODE_UPPER,x);
            ExtBuffer4[x]=iMA   (NULL,0,Bperiod*rez,  0,0,0,x);
            ExtBuffer5[x]=iBands(NULL,0,Bperiod*rez,2,0,0,MODE_LOWER,x);
      }
   return(rates_total);
  }
//======================================================================================================================//

Indicator does not want to work

2340
VOLDEMAR 16.12.2013 20:05 #

another question

symbols can now be saved in sets ...

but how to load a set of symbols is not clear .....

 
VOLDEMAR:

The indicator does not want to work



Have you seen examples of our new custom indicators?

First of all, your indicator buffers should be set as serial. SetAsSeries(ExtBuffer0,true); etc.

 

Wanted to install another terminal updated to 560th build.

I installed a new Alpari terminal, wrote demo.metaquotes.net:444 in the settings , opened a new account with metaquotes.

But updating to 560th build is not happening for some reason((((

____________

Question removed, everything updated after rebooting computera)

 
Armani86:


Panic...

Panic will be with the DCs, who will have clients writing angry odes to them...

Panic will be felt by clients if they, after restarting the terminal, one day find a pristine chart, without a single third-party indicator and a non-functioning Expert Advisor.

That would be a real panic.

People are like that - they love to panic.)))


If it would be a local (small) disaster for each user, it would be a global (huge) disaster for Metakwots. Put yourself in the shoes of company management and think: would you allow it? So why do you think others would.

Just to reassure you and others (I take the word "panic" back :)))) ) there were many more problems before you opened the beta terminal and they have been solved. Let's wait until mid-January, or better yet let's help Metakwots with bug detection and we'll see the end result there. In this situation, don't panic, "the ice has broken" and "the process has started".

 
RekkeR:



I won't argue, because the Market could really be improved, I agree. Although developers are partly to blame, they need to be able to present their products properly too, and not just create code. And do not cobble together all sorts of nonsense for sale.

P.S. "Let's cram what we can't cram" is funny.

 
Night63:

Wanted to install another terminal updated to 560th build.

I installed a new Alpari terminal, wrote demo.metaquotes.net:444 in the settings , opened a new account with metaquotes.

But the upgrade to 560th build is not happening for some reason((((


restart the terminal
 
https://www.mql5.com/ru/forum/147679/page130#881340

For questions, please write back briefly if you can.
 
pro_:

P.S. "Let's fit what we can't fit" is hilarious.


I'll second that... smile. )