product validation

 
no matter how much i edit but it keep failing validation on strategy tester gives me clean report no errors how can i use that
 

What is the problem? Can you describe it in more detail?

 
Simon Draxler #:

What is the problem? Can you describe it in more detail?

So at first it said invalid volume for  eurusd then I fixed that and then it tested gold it said insufficient fund then I fixed that now it keeps saying something about ticks exceeded 2100mb
 
Muhammed Mohsin Khan #So at first it said invalid volume for  eurusd then I fixed that and then it tested gold it said insufficient fund then I fixed that now it keeps saying something about ticks exceeded 2100mb
Poor coding practices: Uncleaned arrays, accumulation of buffers or structures on every tick, no memory release (objects, arrays, buffers, etc.), and OnTick() logic that stores everything without limits.
 
Miguel Angel Vico Alba #:
Poor coding practices: Uncleaned arrays, accumulation of buffers or structures on every tick, no memory release (objects, arrays, buffers, etc.), and OnTick() logic that stores everything without limits.
Thanks I fixed it finally passed validation took me long tho
 
Muhammed Mohsin Khan #Thanks I fixed it finally passed validation took me long tho
I'm glad you were able to fix it. The time thing is normal; you learn from these things. By correcting it, you've probably gained criteria for better managing memory and flow in the code. 😊
 
Miguel Angel Vico Alba #:
I'm glad you were able to fix it. The time thing is normal; you learn from these things. By correcting it, you've probably gained criteria for better managing memory and flow in the code. 😊
Yes I did thanks in fact by redoing it over and over again it improved alot