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

 
MilordFX:

People tell me plz, what build of MT4 after 509 (I sit on it), tested and reliable, that is, eliminated all the bugs that you found?

You do not have to install anything. When new builds reach release state, they will be thrown in the liv_update.

And this is where the beta versions are discussed.

 
Could you please tell us what is waiting for us in the new four with functions like OrderGetInteger(), OrderGetDouble() and OrdgerGetString()? The code with them is compiled now, but the terminal at the Expert Advisor's start tells us that these functions have not been implemented yet . What will be the logic of working with them? Will all parameters be available like in MT5 or this will be a cut version?
 
Wahoo:

Very similar to the 563 theme build

It doesn't work correctly. In 5 the same code works as expected...

Zorder does not work in four. Not yet implemented
 
VOLDEMAR:
Doesn't work in the strategy tester
It's not working. And there's no telling when it will. But it will.
 
Wahoo:
Could you please tell us what is waiting for us in the new four with functions like OrderGetInteger(), OrderGetDouble() and OrdgerGetString()? The code with them is compiled now, but the terminal at the Expert Advisor's start tells us that these functions have not been implemented yet . What will be the logic of working with them? Will all parameters be available like in MT5, or this will be a trimmed down version?

There will be a trimmed down version.

Trading is completely different

 
MRoVas:

Doesn't work.

Although the function returns true, the object in the graph has the old name.


It does not work yet.
 

I think there is a bug The advisor cannot call a function from the library

EA code calling the function

#property strict
#import "bib.ex4"
int ins();
#import 

void OnTick()
  {
int z = ins();  
Comment(z);
  }

library code

#property strict

int ins()
{
int a=1, b=1,c=1,d=0;
d=a+b+c;
return d;
}

Log error

  • 2013.12.22 12:54:45.408 2013.08.19 05:16 Access violation write to 0x00000000
  • 2013.12.22 12:54:45.408 2013.08.19 05:16 Cannot find 'ins' in 'bib.ex4'
 

When I try to open the graph I get an error with a text in the dialog box.

The text is something like ".\profiles\Default\chrt02.chr was not found".

How can the issue be resolved?

 
Interesting:

When I try to open the graph I get an error with a text in the dialog box.

The text is something like ".\profiles\Default\chrt02.chr was not found".

How can the issue be resolved?

Save the template under the default name from the chart you have, having previously configured it. I had such a thing in the beginning - there was no such file at all. I had to copy it to the right terminal folder from the folder of another terminal
 

I found a couple of small typos in the handbook:

OrderModify

Changes parameters of previously opened positions or pending orders.

bool
OrderModify(
int ticket, // order number
double price, // open price
double stoploss, // stop loss
double takeprofit, // take profit
datetime expiration, // expiration time
color arrow_color // colour xml-ph-00

Parameters

ticket

[Unique sequential number of the order to be closed .

Perhaps it would be more correct to write modifiable instead of closeable?