Number of trades
-
Hi
I've created an EA that opens only one trade at a time. Is there a way to limit the number of trades it opens to say three per day. I want to create this for testing purposes.Alternatively, if there a way to have the EA stop entering trades until the following day once a winning trade has been closed?
I can do this manually in live trading, but want to use the Strategy Tester to back test and optimise the EA.
Cheers
-
Perhaps try a combo of the Once a Day and Once Per Trades blocks....?
-
@Matatika On your fist question, you need to use a variable counting those open trades for day so that they can be limited. On your second question, this is the general structure to do it:
-
@l-andorrà Great, thank you for that!!
-
@Matatika You're welcome.