Expert EA Open many trade

 

Is there an expert Opens many deals ?

I need an expert to open 10 or more trades in a single moment

free 

 
Sure it is
 
amando:
Sure it is
do you have ?
 
25107647:

Is there an expert Opens many deals ?

I need an expert to open 10 or more trades in a single moment

free 

Here my friend,

May this be helpful to you. Once you upload it on a chart, clic on the :-) icon to open the parameter menu.

<ex4 file deleted>
 
25107647:

Is there an expert Opens many deals ?

I need an expert to open 10 or more trades in a single moment

free 

If you don't have the source code of the ea then you'll have to manually open more trades every time you get an entry or write a program that opens more orders when order with a particular magic number is detected. 

But if you have the source code you should modify it to keep sending orders until a certain condition is met, say for instance 

int myorders = 5;

// trade entry condition
while(OrdersTotal() < myorders) 
{
        OrderSend();
} 

This is just a code to give you an idea, of course you will still need to check return value of ordersend within the loop and act or display messages accordingly if/when necessary. 

 
25107647:

Is there an expert Opens many deals ?

I need an expert to open 10 or more trades in a single moment

free 

Code:

//+------------------------------------------------------------------+
//|                                                            1.mq5 |
//|                        Copyright 2020, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2020, MetaQuotes Software Corp."
#property link      "https://www.mql5.com"
#property version   "1.00"
//---
#include <Trade\Trade.mqh>
//---
CTrade         m_trade;                      // object of CTrade class
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//---
   m_trade.SetAsyncMode(true);
   for(int i=0; i<10; i++)
      m_trade.Buy(0.01);
//---
  }
//+------------------------------------------------------------------+
Reason: