Jump to content

[Req] EA Profit Santai 6.1


Recommended Posts

  • 3 weeks later...

Re: [Req] EA Profit Santai 6.1

 

can someone of respcted programers here can decompile Tangga 6.2 and Tangga6 real and make it

work is ECN brokers as well? Thanks,

 

 

can someone of respcted programers here can decompile Tangga 6.2 and Tangga6 real and make it

work is ECN brokers as well? Thanks,

 

Hello, my name is L.A. Louzios

 

I have modified the EA you requested to work on ECN brokers as well.

 

I am uploading it here. It works.

 

For all programmers interested on how to do this:

 

double ticket; // initial variable declaration in the beginning

 

then find OrderSend in the code and name it ticket like below:

 

ticket=OrderSend(Symbol(), OP_BUY, g_lots_284, g_ask_260, g_slippage_240, 0,0, 0, 0, 0, Blue); //set the stop loss and take profit at 0

 

then add

 

if (ticket > 0) {

OrderSelect(ticket, SELECT_BY_TICKET);

OrderModify(OrderTicket(), OrderOpenPrice(), g_price_244, g_price_252, 0, Blue);

} // loop for modifying the order with stop loss and take profit.

 

Enjoy!

 

L.A>

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...