Jump to content

SuperForex V2


Recommended Posts

Any of you expert coders know how to make this robot trade with micro lots like "0.01" or "0.02"? I'm new here I hope I posted this in the right place. Try it out, I think you'll like the results!! I would recommend changing the stop loss higher than what it is though.

 

I found it here on this free open source code website. Here's the link

 

h**p://codebase.mql4.com/5851

 

You can also find it in FXStreet.com forum

Edited by Funnyquadman
Link to comment
Share on other sites

lots are calculated in :

 

Lots = AccountBalance() / 10000;

if (Lots > MaxLots) {Lots = MaxLots;}

 

you can put this in comment , and set the external variable to micro :

 

extern double Lots=0.1; ---> extern double Lots=0.01;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...