Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
One silly question on your software : I suppose you have some MM mechanism embedded in there to reduce / adjust the trades between master and slave... My question is : can you script handle micro-lost? 0.01 lot multiples?
It'd be useful to reproduce big demo account on smaller live, hence the question...
One silly question on your software : I suppose you have some MM mechanism embedded in there to reduce / adjust the trades between master and slave... My question is : can you script handle micro-lost? 0.01 lot multiples?
It'd be useful to reproduce big demo account on smaller live, hence the question...
it can hadnle 0.01 or any other size. MM is quite flexible in it. i'll copy my reply to another client:
import EA can trade with own lot size (Lots) when MasterLots=false
it can also calculate lot size with MM function when MasterLots=false and FixedLot=false
it can copy lot size from export when MasterLots=true and MasterLotMultiply=1.0
and it can multiply that size by MasterLotMultiply parameter
e.g. when MasterLots=true and MasterLotMultiply=2, export lot is 0.2, then import lot = 0.2*2 = 0.4
or MasterLotMultiply=0.5, export lot is 0.2, then import lot = 0.2*0.5 = 0.1
Does TRADECOPY, in reverse mode, duplicate the "sent" orders,or the executed orders?
For example, I have a "very bad" EA which sends an order with buy, Stop loss, and Take profit included. Mostly the stop loss is hit. Would TRADECOPY reverse this situation?
Are there any account equity protections built into TRADECOPY?
Also, does TRADECOPY work in strategy tester? I wouldn't think so.
Does TRADECOPY, in reverse mode, duplicate the "sent" orders,or the executed orders?
For example, I have a "very bad" EA which sends an order with buy, Stop loss, and Take profit included. Mostly the stop loss is hit. Would TRADECOPY reverse this situation?
yes, it can completely reverse trades (buy to sell and swap SL/TP)
Quote:
Are there any account equity protections built into TRADECOPY?
no, but this is easy to add
Quote:
Also, does TRADECOPY work in strategy tester? I wouldn't think so.
what if your running the EA on broker A and sending them to broker B... but broker B has a price feed with 5 digits on eur/usd (eg. 1.55758) and broker A(where EA is running) has a price feed of 4 digits on eur/usd (1.5575)?
Because the indicators at brokers with micropips (5 digits) are always messed up and because of this most EA's do horribly at them..
what if your running the EA on broker A and sending them to broker B... but broker B has a price feed with 5 digits on eur/usd (eg. 1.55758) and broker A(where EA is running) has a price feed of 4 digits on eur/usd (1.5575)?
Because the indicators at brokers with micropips (5 digits) are always messed up and because of this most EA's do horribly at them..
If the Master Account Export EA is for sending trades to one or more Slave Account Import EAs, and the Slave Account Export EA is used for sending trades to one or more Master Account Import EAs, then what is the difference between each pair?
Either way you have an export EA that can send trades to one or more import EAs, so how do the two sets differ?