mak2009 Posted December 6, 2009 Report Share Posted December 6, 2009 Dear all, This is a simple EA I found on net and I am working on it for the purpose of learning coding... No matter what I do I can not get the EA to work based on the users SL and TP... Plus BE function does not work properly... After learning these, I will move on to MM, GMT correction and etc Here is the EA http://www.4shared.com/file/166403063/2056932a/BO_EA.html Any help is much appreciated... Quote Link to comment Share on other sites More sharing options...
scarface Posted December 11, 2009 Report Share Posted December 11, 2009 Re: [HELP] Stoploss and TP fixed Hi, Good day, I might drop by and come to help if I have time. There are still some request that I've not finished yet. I would love to check and see what's going on since it is a coding issue. Thanks for your thread, Best wishes, Quote a New Year 2011 has come, and the challenge has just started 8-) Link to comment Share on other sites More sharing options...
fxbill Posted December 30, 2009 Report Share Posted December 30, 2009 Re: [HELP] Stoploss and TP fixed Your EA is setting your SL and TP to zero on a new order. //open orders double SL,TP,ILots; int Ticket; SL=0;TP=0;ILots=Lots; Make these changes andthe ea should work double ,ILots; int Ticket,SL,TP;; SL=loss; TP=profit; ILots=Lots; Quote Link to comment Share on other sites More sharing options...
scarface Posted January 5, 2010 Report Share Posted January 5, 2010 Re: [HELP] Stoploss and TP fixed Hi mak2009, Good day, I have modified the EA and didn't check on backtest yet. I may do that later to see how it works. It looks interesting somehow. For me, I can learn something new in the code. Here it is: hxxp://xxx.mediafire.com/?jyytyilzhjm or hxxp://xxx.multiupload.com/GY7YHQBAWQ Please let me know whether it works or not, Best wishes, Quote a New Year 2011 has come, and the challenge has just started 8-) Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.