mrshafaq

Trader
Aug 18, 2023
2
0
17
39
it is absolutly fantastic but i have suggestion it will be good if time stop, timer start, trade disable , trade enable, and time date adjustment display at the trade panel for example i want to trade like this even there is no news . some time if market volatile i should have option to start calculating high low and place the order
 

Kassem v

Trader
Jan 11, 2024
4
0
7
39
Hi There ,
is Buy-Limit rather than sell-stop available ?
and if not , if we manually replace (in meta edit) them , does it work normally ?
 

Enivid

Administrator
Staff member
Nov 30, 2008
19,203
1,499
144
Odesa
www.earnforex.com
is Buy-Limit rather than sell-stop available ?
No, it's designed as a breakout EA, so it uses stop orders.
and if not , if we manually replace (in meta edit) them , does it work normally ?
Yes, but you'd also need to change how SL/TP is calculated and how OCO works (if you use it).
 

Kassemm

Newbie
Jun 13, 2024
2
1
1
39
No, it's designed as a breakout EA, so it uses stop orders.

Yes, but you'd also need to change how SL/TP is calculated and how OCO works (if you use it).
Hello,

You'll find in attachments the following :

1. Amazing(Limit).mq5 : Buy/Sell-Limit rather than Buy/Sell-Stop.

2. Amazing.mq5 : corrected error of SL = Sell Stop :
Line 340 { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_entry, sell_take_profit, 0, 0)) }
to { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_loss, sell_take_profit, 0, 0)) }

I wish the trial of the modified EAs , and suggest adding Amazing(Limit).mq5 to the page of Amazing if found usefull.
Best Regards.
 

Attachments

  • Amazing(Limit).mq5
    31 KB · Views: 4
  • Amazing.mq5
    30.2 KB · Views: 3
  • 👍
Reactions: Enivid

Kassemm

Newbie
Jun 13, 2024
2
1
1
39
Hello,

You'll find in attachments the following :

1. Amazing(Limit).mq5 : Buy/Sell-Limit rather than Buy/Sell-Stop.

2. Amazing.mq5 : corrected error of SL = Sell Stop :
Line 340 { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_entry, sell_take_profit, 0, 0)) }
to { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_loss, sell_take_profit, 0, 0)) }

I wish the trial of the modified EAs , and suggest adding Amazing(Limit).mq5 to the page of Amazing if found usefull.
Best Regards.
On the other side, I tried to find a solution for Updating "TP & SL Fixed values" with the value of the Slippage that comes to be Very big especially during Important News Events - which leads to trading Losses- but it was over my capabilities :) and I wish we have a solution.
 

Enivid

Administrator
Staff member
Nov 30, 2008
19,203
1,499
144
Odesa
www.earnforex.com
2. Amazing.mq5 : corrected error of SL = Sell Stop :
Line 340 { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_entry, sell_take_profit, 0, 0)) }
to { if (!Trade.OrderModify(ticket, sell_stop_entry, sell_stop_loss, sell_take_profit, 0, 0)) }
Thanks for reporting this!

On the other side, I tried to find a solution for Updating "TP & SL Fixed values" with the value of the Slippage that comes to be Very big especially during Important News Events - which leads to trading Losses- but it was over my capabilities :) and I wish we have a solution.
Unfortunately, it's impossible to predict the Slippage during the news.