Errors, bugs, questions - page 2004

 
Mickey Moose:
So is it possible to turn off the ability to update the thermals without my consent? Why do I need another situation where I have to rewrite part of the EA after the release of some build?

One minor flaw of the developers is that they give the option to connect older builds of the terminal to the server. They should give 2-3 builds back, and no more. It turns out 1010 is still working, it should have been disabled long ago, now there was a question on it recently in a nearby thread. They keep an old thing, and then wonder why it works with flaws.

 
Mickey Moose:
Many people remember how some EAs stopped working after the next update.

I have not had any "drops" in any build, there was a bug in 980 with graphics and charts overrun, but it was quickly fixed, and the quality of trading was not affected

 
Vitaly Muzichenko:

One minor flaw of the developers is that they give the option to connect older builds of the terminal to the server. They should give 2-3 builds back, and no more. It turns out 1010 is still working, it should have been disabled long ago, now there was a question on it recently in a nearby thread. They keep the old stuff, and then wonder why it works with glitches.



I've been running vin 7-32 since about 2013 and everything is working fine and will continue to do so. I want the same from the terminal - to open in a year and have everything working.
I do not even open positions every month because I am lazy.
 
Mickey Moose:
I've had vin 7-32 since about 2013 and everything works fine and will continue to do so. I want the same from the terminal - to open in a year and have everything working.
I do not even open positions every month because I am lazy.

Everything is a comparison. After the 64-bit system, 32 bits are just rubbish for work.

Whoever wants wants looks for an opportunity, whoever does not want - for a reason.

 
Vitaly Muzichenko:

Everything is learned by comparison. After a 64-bit system, a 32-bit system is just rubbish to work with.

Whoever wants it, looks for an opportunity, whoever doesn't want it, looks for a reason.

What's wrong with 32?
 
Mickey Moose:
What's wrong with the 32?

In terms of memory capacity, and its stupidity. My grandfather still praises the 03 Zhiguli, but he's never driven a rotten Opel in his life, and he has nothing to compare it to to give up his personal opinion.

 

Error in execution

class A {
public:
        A const *operator -() { return &this; }
        A const *         g() { return &this; }
        int f() const { return 1; }
        int f()       { return 2; }
};
void OnStart()
{
        A a;                   //Результат:
        Print( ( a.g()).f() ); //           1
        Print( (-a    ).f() ); //           2
}

Different result - should be the same

 

Error in execution

void OnStart()
{
        double d = 125.12;
        int w = 12;
        printf(  "%0*f", w, d ); //Результат: пусто
}
and it should be: 00125.120000
 

Compilation error

class A {};
class B {
public:
        int b[];
};
void OnStart()
{
        const A a1;
              A a2 = (A)a1; //нормально
        const B b1;
              B b2 = (B)b1; //error: '(' - invalid cast operation
}
 

Why at minimum scale: Instead of displaying a near-vertical Trendline ray , a horizontal line is displayed at the bottom


Sequence of actions:

  1. Create a USDCAD chart window
  2. Set the period H1
  3. Load the attached template
Files:
USDCADH1.tpl  3 kb
Reason: