Sure it is
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.
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); //--- } //+------------------------------------------------------------------+

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Is there an expert Opens many deals ?
I need an expert to open 10 or more trades in a single moment
free