Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
Nicolas Zouein  

Hello and Thank You for offering the 'Copier4Free' for free but I would like to say that it has too many unclear inputs, making it work is impossible without explanation on each input:

Ticket:

Type:

Filehandle:

 ...etc..

Vladimir Tkach  
Hi. Do not pay attention to all those inputs. The all changeable parameters are placed on the graphic. In version 1.1 I will hide unchangeable inputs and reduce the disk access.
Vladimir Tkach  
Partial closing is not available. Does anybody need it?
Chris McMahon  

Hi, If you don't mind can you tell me how to link the Master account to the Slave account? I have been searching for a product like this but I cannot seem to get the slave to do as the master orders.

Thanks 

Vladimir Tkach  
CMCTRD:

Hi, If you don't mind can you tell me how to link the Master account to the Slave account? I have been searching for a product like this but I cannot seem to get the slave to do as the master orders.

Thanks 

Hi.

Master writes informations about opened orders into the common file, like this:

filehandle=FileOpen("deals.csv",FILE_WRITE|FILE_CSV|FILE_COMMON);

if(filehandle!=INVALID_HANDLE)
{
if(OrdersTotal()==0) {FileWrite(filehandle,""); FileClose(filehandle); return;}

for(int i=0; i<OrdersTotal(); i++)
{
OrderSelect(i,SELECT_BY_POS);

double
sl=OrderStopLoss(),
tp=OrderTakeProfit();

if(OrderType()==OP_BUY || OrderType()==OP_SELL) FileWrite(filehandle,OrderTicket(),OrderSymbol(),OrderType(),OrderOpenPrice(),OrderLots(),sl,tp);
}
FileClose(filehandle);
}
}  

 

And slave reads this data and opens deals, like this:

filehandle=FileOpen("deals.csv",FILE_READ|FILE_CSV|FILE_COMMON);

if(filehandle!=INVALID_HANDLE)
{
while(!FileIsEnding(filehandle))
{
ticket=StrToInteger(FileReadString(filehandle));
symbol=FileReadString(filehandle);
type=StrToInteger(FileReadString(filehandle));
price=StrToDouble(FileReadString(filehandle));
lot=StrToDouble(FileReadString(filehandle));
sl=StrToDouble(FileReadString(filehandle));
tp=StrToDouble(FileReadString(filehandle));

int cnt=0;

for(int i=0; i<OrdersTotal(); i++)
{
OrderSelect(i,SELECT_BY_POS);
if(OrderMagicNumber()==magic) cnt++;
}
if(cnt==Total()) OpenOrder(ticket,symbol,type,price,lot,sl,tp);
}
FileClose(filehandle);

 

And some more things to check the sl/tp changing during the trades 

Vladimir Tkach  
I can sell you the hole code if you like.
Vladimir Tkach  
MIG32:
Не скачивается.
Прверил через мт4. Скачался и запустился.
farshid heshmati  

excellent !!!! thanks a lot

i have question, i do copy some ones trade, but he get position on  0.30 lot.... i dont want to get the same size i need to execute on 0.05 ! could you tell me please how can i do that???? thank you 

Vladimir Tkach  
You can use multiplier, but in you case it will not be correct. This utility does not round lot size after multiplication. It is need to be added.
Vladimir Tkach  
farshid heshmati:

excellent !!!! thanks a lot

i have question, i do copy some ones trade, but he get position on  0.30 lot.... i dont want to get the same size i need to execute on 0.05 ! could you tell me please how can i do that???? thank you 

In release 1.6 it will check lot size after multiplication. Wait until it will be published by moderator.
farshid heshmati  
Vladimir Tkach:
In release 1.6 it will check lot size after multiplication. Wait until it will be published by moderator.
THANKS A LOT
Shicheng Ye  
it a good tools~thanks very much^^
Timo Schroeter  

Hello,

can I copy a trade I receive as a signal receiver with this tool?

Vladimir Tkach  
shidemo:

Hello,

can I copy a trade I receive as a signal receiver with this tool?

Hi. Yes, you can copy any opened trade.
Greatpiper24  

Great script. I do exactly what the video shows. When I open a trade on the master it dosent open up on the slave.   first I need to say that iam trying this on demo mt4. I have 2.  both are separate logons. is this right?  what iam hoping is to open 4 live accts under one user. myself and duplicate the trades. is this right? or do I need to open 4 separate live accts?

Vladimir Tkach  
You cant copy trades if your several acc just on one mt4. 
Greatpiper24  
Vladimir Tkach:
You cant copy trades if your several acc just on one mt4. 
ok. I was able to open the copier my mt4 as master. than I opened it in a second mt4 (same credentials). so I can make double on a trade. now I like to know how I can open "unlimited slaves". I opened a 3rd one with same credentials (3 mt4) and what would I need to do to label the 3rd one as provider 3? I also will be soon if this goes well and it is so far.....Localtrade copier.  for now this is my start. I like to have 8 mt4 (same acct) and execute one trade. this is a sharp double edge sword. however using renko and making just 2 bricks a day (10pip) each make it easy.  thank you so much. you have no idea what good things come to those who help others.    so my main question how to open my 3rd mt4.so iam making 3 times on one trade.
Greatpiper24  
hey Vladimir, I was able to open my 3rd. I was confused because with just 2 both trades showed on my masters profit/loss. with 3 now the profit shows on separate mt4. so I believe its ok now. wow. I like to send a good bottle of wine. wow.
Greatpiper24  

well if you can answer my comment before about how to open my 3rd. cheers. thank you. I did so and now its just 1 trade on 3. what I was hoping for is the 3 trades making 3 times the amount. 

Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen