MetaTrader 4 Build 600 with Updated MQL4 Language and Market of Applications Released - page 18

 
Rickyrk:

Anyone please help me

i was trying to compile this mql file on new mt4 but it failed

please help me compile this



1. You have broken import section by variable declarations

Change your source to

extern string Location = "C:/Slave/Experts/Files/";  

string FinalName;
string FileName;

#import "kernel32.dll"
#define GENERIC_READ    0x80000000
#define GENERIC_WRITE   0x40000000
#define FILE_SHARE_READ                 0x00000001
#define FILE_SHARE_WRITE                0x00000002
#define FILE_SHARE_DELETE               0x00000004
#define CREATE_NEW      1
#define CREATE_ALWAYS   2
#define OPEN_EXISTING   3
#define OPEN_ALWAYS     4
#define INVALID_HANDLE -1
   
int CreateFileA(
      string   FileName,
      int      DesiredAccess,
      int      dwShareMode,
      int      lpSecurityAttributes,
      int      dwCreationDistribution,
      int      dwFlagsAndAttributes,
      int      hTemplateFile
);   
                    
bool WriteFile(
      int      hFile,
      string   Buffer,
      int      nNumberOfBytesToWrite,
      int     lpNumberOfBytesWritten[],
      int      lpOverlapped
);         
   
bool CloseHandle(
      int   hObject
);
//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()

2. Did you read about unicode strings in the new MQL4?

 
mfp:

Hi all,

First post from me, but can anyone tell me if ArrayCopy() has altered. It just doesn't seem to make any sense to me anymore.

Thanks. It will be fixed soon.
 
Rickyrk:
I wanted a help about new update of MT4 because of its new update i am unable to use some of my robot.
I have to use CSV file on my robot but due to directory change my robots aren't working now is it possible to change the directory of CSV file ??

Why is your robot not working? Have you tried to investigate this issue?
 
alexvd:

Which OS is installed on your PC? IS UAC enabled? Where did the terminal was installed? Which user permissions do you use to start terminal? Do you use 602 build of client terminal? Could you provide terminal log file?


I have win7
I'm the administrator of the PC (single user)
uac disabled
I am using the build600

when compiling a file, the editor also compiles the other files!

it seems that the init face of the indicators

 
littlemax:

Hi alexvd, See attached files, nothing in the logs. broker is IC Markets live server. also tested on IBFXAU live server with the same result. Appears to be the same error 'simtrader' is reporting.

Just loaded build 603 & issue is still there, a also now discovered the issue affects manual closing of open orders in general - same result with 'please wait your order is being processed by the server'

Only possible to close an order manually after the first trade timeout on an attempted order placement or closure has occurred after the platform is re-started.

The issue was fixed, please wait new build. Thanks for the message.
 
alexvd:
Thanks. It will be fixed soon.

Great - Thanks alexvd. Please post when it is done. Kind regards - mfp.
 
mfp:

Great - Thanks alexvd. Please post when it is done. Kind regards - mfp.

Just wait for the next build.
 

Unfortunately the new MT4 voids a lot of past work from traders / coders to make trading with MT4 easier, more comfortable or better adaptable to various trading system and strategies.

I collected quite a lot of scripts and custom indicators from different Forex forums (unfortunately many of them without source), which are now not working anymore after build 600.

Meta Quotes - what did you really want to achieve with this update policy?

I don't see that much improvement regarding functionality or features, that would really justify to not implement backword compatibility.

Is it really only about the "market"?

One Market to rule them all, One Market to find them,

One Market to bring them all and in the darkness bind them

In the Land of Meta Quotes where the Shadows lie.

Anyway, to help clean up the mess the new build did to my collection of experts, indicators and scripts, i wwould like to know how to deal with gray items in the navigator.

Some of them gave error / warning when compiling, but can still be attached to charts, others not.

Some of them gave no error / warning, yet still are grayed.

So what is the logic behind the "gray" items?

Will they not / work properly ???

 
AnGri:


Anyway, to help clean up the mess the new build did to my collection of experts, indicators and scripts, i wwould like to know how to deal with gray items in the navigator.

Some of them gave error / warning when compiling, but can still be attached to charts, others not.

Some of them gave no error / warning, yet still are grayed.

So what is the logic behind the "gray" items?

Will they not / work properly ???

Grey items are ones that have the .ex4 but not the .mq4 . . . as far as I can tell. You said you don't have the .mq4 so they cannot be recompiled so there will be no compile errors . . . only run time errors. Many will work, some will not, if you don't have the source you cannot fix them.
 
Thanks for the answer.
RaptorUK:
Grey items are ones that have the .ex4 but not the .mq4 . . . as far as I can tell. You said you don't have the .mq4 so they cannot be recompiled so there will be no compile errors . . . only run time errors. Many will work, some will not, if you don't have the source you cannot fix them.

Thanks.

I put the sources i had back into the folders, and indeed the according items in the navigator were no longer gray.

Normally i kept the sources in separate folder ...