Basic Question: How to control One EUR/USD Buy Or Sell at a time
-
I like to work with six pairs, so I should never have more than 6 pairs trades at a time. Sometime my condition can be hit more than once, and I don’t want another EUR/USD trade.
For example, If I currently have a trade of Buy for EUR/USD how do control/filter no more Buy will be executed for EUR/USD because I already have a trade executed a few day earlier?
I have something like NoTrade->Condtion->OnceADay->CloseTrades->BuyNow
-
NoTrade->Condtion->OnceADay->CloseTrades->BuyNow
That should work! You only need to set Block NoTrade to filter only Buy trades.
That way it will only open a new Buy trade on the current pair (EURUSD for example) if there isn't one opened yet. -
@mlnaumann Can you please share the link of your project?