Different trailing stop values for multiple trades
-
My EA opens two trades when conditions are met. I want to trail these trades differently, How do i go about that.

-
Remove the connection of the current TS to one of the no-trades. Add a 2nd trailing stop to the other no-trade. Then specify which will be buy, which will be sell.
I'd suggest to separate your entire project like that. All buy separate from all sells because you have several overlapping conditions. But thats my preference to make things simple and easier to diagnose.
-
will give that a try, appreciated. Can you enlighten me on the overlapping conditions
-
@kaylow said in Different trailing stop values for multiple trades:
will give that a try, appreciated. Can you enlighten me on the overlapping conditions
When I am building the initial EA I will do the most simply thought version of buys only. Then I figure out how to condense it to smarter blocks, if needed. I usually keep my buy and sell EA's separate if they rely on opposing conditions. -
@jsauter86 well noted , thank you