open multiple orders with the same lot size

 

im looking for a way or something i can buy to help me place multiple orders with same lot size, same SL and multiple TPs.

for example

lot size 0.1 (at market execution)

sl xxxx

TP1

TP2

TP3

 
joe97:

im looking for a way or something i can buy to help me place multiple orders with same lot size, same SL and multiple TPs.

for example

lot size 0.1 (at market execution)

sl xxxx

TP1

TP2

TP3

how many orders you want to open

 
extern int    Number_Of_Orders_To_Execute=9;
 




for(int cnt=0; cnt<Number_Of_Orders_To_Execute; cnt++)
 // your send order code


Or


            int buy=OrderSend(Symbol(),OP_BUY,Lot,Ask,0,Stoploss,Takeprofit1,"",MAgic,clrNONE);
                buy=OrderSend(Symbol(),OP_BUY,Lot,Ask,0,Stoploss,Takeprofit2,"",MAgic,clrNONE);
                buy=OrderSend(Symbol(),OP_BUY,Lot,Ask,0,Stoploss,Takeprofit3,"",MAgic,clrNONE);
 
Ahmet Metin Yilmaz:

how many orders you want to open

3 mostly 

 
Abubakar Saidu:


Or


how do i put this in mt4?

 
In future please post in the correct section
I will move your topic to the MQL4 and Metatrader 4 section.
 
Keith Watford:
In future please post in the correct section
I will move your topic to the MQL4 and Metatrader 4 section.

cool, can you make me a script like that?

Reason: