View Single Post
  #713 (permalink)  
Old 06-27-2009, 03:51 AM
forexhog forexhog is offline
Junior Member
 
Join Date: Jun 2008
Posts: 14
forexhog is on a distinguished road
Quote:
Originally Posted by 4rexLady_de View Post
Hi guys,

I have tried to run V1+V2new2[1].1 on 5 digits account, but it doesn´t work ...

Can anybody tell me, what and how, I have to change in the code to make it work on 5 digits? I am not a programmer but I can figure it out because I have some programming experience in webdesign.

Or, if there is a version already for 5 digits, would you please tell me, where I can find it?

That would be fantastic. Help is greatly appreciated.

Regards,

4rexlady
Add this to the internal settings section of your EA

double Poin;

Add this to the
int init section of your EA
if (Point == 0.00001) Poin = 0.0001;
else if (Point == 0.001) Poin = 0.01;
else Poin = Point;

forexhog
Reply With Quote