Forex



Go Back   Forex Trading > Announcements > Announcements Blog
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #91 (permalink)  
Old 03-25-2008, 08:05 AM
Junior Member
 
Join Date: Jun 2006
Posts: 5
mysuperjunkemail is on a distinguished road
MT4 build 213 simple fix

it seems that mt4 vuild 213 has problem with string handling, it crashes most of my indicators and EA. Here are some simple fix:

1) avoid passing string lateral in function parameter instead pass by variable type string.

BAD: Print("This is a test");

OK: string strTemp = "This is a test";
Print(strTemp);

2) avoid using operator + to concatenate string, use buildin function StringConcatenate():

BAD: int i=0;
Print("This is index i="+i);

OK: int i=0;
string strTemp = StringConcatenate("This is index i=",i);
Print(strTemp);

it solves my problems, I hope it helps u too..

Print();
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #92 (permalink)  
Old 03-25-2008, 08:53 AM
Senior Member
 
Join Date: Jan 2006
Posts: 1,119
omelette is on a distinguished road
Quote:
Originally Posted by mysuperjunkemail View Post
it seems that mt4 vuild 213 has problem with string handling, it crashes most of my indicators and EA. Here are some simple fix:

1) avoid passing string lateral in function parameter instead pass by variable type string.

BAD: Print("This is a test");

OK: string strTemp = "This is a test";
Print(strTemp);

2) avoid using operator + to concatenate string, use buildin function StringConcatenate():

BAD: int i=0;
Print("This is index i="+i);

OK: int i=0;
string strTemp = StringConcatenate("This is index i=",i);
Print(strTemp);

it solves my problems, I hope it helps u too..

Print();
Hi. I have EA's running on build 213 that are coded in the manner you suggest, and can't say I have seen any of the problems you describe. btw, when using really long strings (ie. buffering web-pages etc.) StringConcatenate() does not allocate memory properly - search Metaquotes forum if you need more info.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #93 (permalink)  
Old 03-25-2008, 10:36 AM
nvwine's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 21
nvwine is on a distinguished road
If you are having crash problems with b213: MetaQuotes has an updated version of b213 up. It is dated March 25th. Read down about 10 posts in this thread. It solved problems I had with platform crashes. I did re-compile EAs and indicators.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #94 (permalink)  
Old 03-25-2008, 01:34 PM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Spring)
Posts: 4,412
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
I think Metaquotes should/would release a new version to allow automatic update for all brokers and solve the user´s problem.

Reinstall the software is a pretty ugly patch. You´re asked to fix the problem, this is crazy.

IMHO.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #95 (permalink)  
Old 03-25-2008, 01:38 PM
Senior Member
 
Join Date: Jan 2006
Posts: 1,119
omelette is on a distinguished road
Quote:
Originally Posted by Linuxser View Post
I think Metaquotes should/would release a new version to allow automatic update for all brokers and solve the user´s problem.

Reinstall the software is a pretty ugly patch. You´re asked to fix the problem, this is crazy.

IMHO.
What exactly is the problem? I have the 'old' version (13th March) and have experienced no crashes...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #96 (permalink)  
Old 03-28-2008, 02:22 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Spring)
Posts: 4,412
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Build 215

Quote:

27 March 2008
New MetaTrader 4 Client Terminal Build 215 has been released.

What’s new:
1. MQL4: Fixed error of constant string concatenation (Expert Advisors and scripts compiled in build 213 must be recompiled).
2. MQL4: Fixed error of the reinitialization of global and static variables of MQL4-libraries.
3. MQL4: Fixed memory leak when resizing of string arrays.
4. MQL4: Fixed memory leak when accessing out of range of string arrays.
5. Tester: Fixed error of generating ticks in candlesticks with volume 4–6 and with one shadow absent.
Beating the releases record
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #97 (permalink)  
Old 03-28-2008, 04:35 AM
Senior Member
 
Join Date: Oct 2007
Posts: 230
Dave137 is on a distinguished road
Red face

Quote:
Originally Posted by omelette View Post
What exactly is the problem? I have the 'old' version (13th March) and have experienced no crashes...
I crashed 4 of my demo platforms on NF with 213. Now I have issues with FXPro.com's demo platforms - None of my EA's will work with the platform even since 215 came out tonight - I keep getting error 130 and I don't get this on other brokerage demo accounts.

Dave
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #98 (permalink)  
Old 03-28-2008, 05:08 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Spring)
Posts: 4,412
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by Dave137 View Post
I crashed 4 of my demo platforms on NF with 213. Now I have issues with FXPro.com's demo platforms - None of my EA's will work with the platform even since 215 came out tonight - I keep getting error 130 and I don't get this on other brokerage demo accounts.

Dave
Even after recompile the EAs Dave?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #99 (permalink)  
Old 03-28-2008, 07:42 AM
Junior Member
 
Join Date: Nov 2007
Posts: 15
irclay is on a distinguished road
I need the build 214 or 213 version now!. Come on, where can i get it? NOT THE 215 version from the homepage
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #100 (permalink)  
Old 03-28-2008, 12:14 PM
Senior Member
 
Join Date: Jan 2006
Posts: 1,119
omelette is on a distinguished road
Quote:
Originally Posted by Dave137 View Post
I crashed 4 of my demo platforms on NF with 213. Now I have issues with FXPro.com's demo platforms - None of my EA's will work with the platform even since 215 came out tonight - I keep getting error 130 and I don't get this on other brokerage demo accounts.

Dave
There is obviously something wrong with MT with all these complaints, but with build 213 March 13, I get no problems! As I leave things running 24/7 I don't get prompted about new updates (normally, when MT crashes) but having just checked, I see I'm two updates behind...

Think I'll leave well enough alone till they sort things out...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex, how to upgrade metatrader, metatrader build 218, mt4 build 220, old metatrader, w32/gobi, metatrader 218


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Which MT4 versions is the best and how much is the soft cost ? mpforex Metatrader 4 4 07-16-2008 09:02 AM
Old versions of Metatrader wookey Metatrader 4 1 08-15-2006 04:32 AM
more early versions for mt4 newdigital TSD Expert Advisors 10 12-17-2005 03:15 AM
Some previous versions (before 0_34c) newdigital TSD Expert Advisors 0 10-24-2005 07:03 PM


All times are GMT. The time now is 10:23 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.