View Single Post
  #5 (permalink)  
Old 08-22-2007, 05:00 PM
mladen's Avatar
mladen mladen is online now
Senior Member
 
Join Date: Oct 2006
Posts: 297
mladen is on a distinguished road
Metatrader bug no.nnn?

Just found out a workaround on Metatrader stuppidity no.???

if anyone uses arrays in code set as series, be sure to unset it as series before resizing if you want to save values stored in the array, in short

if you have anywhere in code something like this
PHP Code:
ArraySetAsSeries(Buffer,true); 
later on the code
PHP Code:
ArrayResize(Buffer,Bars); 
produces wrong array as result, you must use
PHP Code:
ArraySetAsSeries(Buffer,false);
ArrayResize(Buffer,Bars);
ArraySetAsSeries(Buffer,true); 

Last edited by mladen; 08-22-2007 at 08:26 PM.
Reply With Quote