Experts: Instant Execution

 

Instant Execution:

Instant execution button to close profit orders, close all orders, auto close by trailing parameter.

Instant Execution

Author: Gusti Risyadi Noor

Instant Execution New
Instant Execution New
  • www.mql5.com
Squeeze RA V1 My version of Squeeze Indicator for MetaTrader 4. This indicator is based on a strategy mentioned in John Carter's book, Mastering the Trade. It is also a fully improvised version of Squeeze_Break indicator by Des O'Regan. Robust EA Template A robust EA template to use with your entry conditions. Trend_Catcher The EA looks...
 
Automated-Trading:

Instant Execution:

Author: Gusti Risyadi Noor

Stoploss not working ?

 
Johannes Jilles van Duijn:

Stoploss not working ?

Thank You Sir, new update has been published. You can download again.
 

Hello Sir,

thank you for your code, its' very useful!

 If you do not mind, i made some changes in your code.

 - SL & TP working

 - Max Order at once changes (one click one order, with check the max count)

 

I hope i help :)

 

Thx,

  Ritter 

 
Ritter Jozsef:

Hello Sir,

thank you for your code, its' very useful!

 If you do not mind, i made some changes in your code.

 - SL & TP working

 - Max Order at once changes (one click one order, with check the max count)

 

I hope i help :)

 

Thx,

  Ritter 

Great  job Ritter, thanks for Your update.
 
Automated-Trading:

Instant Execution:

Author: Gusti Risyadi Noor

Hello Sir, Terimakasih telah sudi berbagi 

Bisakah Tuan menambahkan extern function (By Symbol/ Magic Number) atau mengganti fungsi kerja dari Close All  order, close profit order yang bekerja sebelumnya berdasarkan symbol yang dipakai (By Current selected Symbol) dirubah berdasarkan MAGIC NUMBER ?

  • could you change ea work Buttons Close All Orders,close profit orders, close all orders by current selected Symbol to current Magic Number ?.
EA ini sungguh bagus bisa membantu saya dalam trading manual
Best regards
 
Penta Baru:

Hello Sir, Terimakasih telah sudi berbagi 

Bisakah Tuan menambahkan extern function (By Symbol/ Magic Number) atau mengganti fungsi kerja dari Close All  order, close profit order yang bekerja sebelumnya berdasarkan symbol yang dipakai (By Current selected Symbol) dirubah berdasarkan MAGIC NUMBER ?

  • could you change ea work Buttons Close All Orders,close profit orders, close all orders by current selected Symbol to current Magic Number ?.
EA ini sungguh bagus bisa membantu saya dalam trading manual
Best regards

Hi, absolutely i can change for that. I was update this feature but is on checked by Moderator.

Or You can download on my personal blog. http://confident-trader.blogspot.co.id/p/download.html

CONVERSATION
CONVERSATION
  • confident-trader.blogspot.co.id
All of on this blog is free to download. Some programs that require you to request a license, but i...
 
Gusti Risyadi Noor:

Hi, absolutely i can change for that. I was update this feature but is on checked by Moderator.

Or You can download on my personal blog. http://confident-trader.blogspot.co.id/p/download.html

Thankyou Sir, I have Tried ,

 Apakah Versi ini menggunakan Hidden SL/TP ? ,sebab setelah saya coba sepertinya menggunakan Hidden TP/SL.

Apa fungsi dari Trailing martinglestart dan Trailing Martingle Stop? , can you explain to us Sir?   

could you change this mod_by ritter Version    https://c.mql5.com/3/79/instantexecution_mod_Ritter.mq4   work by magic Number ?.

 

Thankyou with 

my best Regards

 
Penta Baru:

Thankyou Sir, I have Tried ,

 Apakah Versi ini menggunakan Hidden SL/TP ? ,sebab setelah saya coba sepertinya menggunakan Hidden TP/SL.

Apa fungsi dari Trailing martinglestart dan Trailing Martingle Stop? , can you explain to us Sir?   

could you change this mod_by ritter Version    https://c.mql5.com/3/79/instantexecution_mod_Ritter.mq4   work by magic Number ?.

 

Thankyou with 

my best Regards

Yes, Use hidden SL/TP.

Trailing martingle start/stop its used for the next trailing. Example:

Jika kita set trailing start 10, maka EA akan set SL sesuai dengan trailing stop. Kemudian next trailing'nya EA hanya akan melihat value dari trailing martingle start dan akan set SL dengan trailing martingle stop nya.

 if We set a trailing start value by 10, then the EA will set SL based on trailing stop. After that, the next trailing that will be used by EA is value of trailing martingle start & triling martingle stop for SL.

Maybe You have idea to rename this traling martingle feature.

For this EA https://c.mql5.com/3/79/instantexecution_mod_Ritter.mq4 , you can change function CloseAtProfit with this code:

 

void CloseAtProfit()

  {

   int ticket=0;

   RefreshRates();

   for(int cnt=0;cnt<OrdersTotal();cnt++)

     {

      ticket=OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);

      if(OrderMagicNumber()==Magic && OrderType()==OP_BUY && Bid>OrderOpenPrice())

        {

         ticket=OrderClose(OrderTicket(),OrderLots(),Bid,0,Violet);

        }

      if(OrderMagicNumber()==Magic && OrderType()==OP_SELL && OrderOpenPrice()>Ask)

        {

         ticket=OrderClose(OrderTicket(),OrderLots(),Ask,0,Violet);

        }

     }

  }

Thanks, 

 
How to execute order in tester visual mode?
This EA does not.
 
Boris Rudyk:
How to execute order in tester visual mode?
This EA does not.

To test this EA, You must execute with Your demo Account. Because this is the manual action but for trailing, SL/TP will be automated after the order was executed by this EA buttons.

 

Have a nice try.... 

Reason: