How are partial crescents made when they arrive at TP?
-
My problem:it closes operations before stop loss without reaching the level it places, nor closes 50% of the transaction when it arrives at the TP, it does it before and the other 50% of the transaction does not follow the trailing
What I tried:I put the modules so that it verifies for each operation how much distance they have from the TP, if they reach 100%, that is, the TP should close 50% and the other 50% should apply the trailing stop with the SL at 50% of the price. opening and TP
What I expect:I hope the TP is 1 ATR and the SL 1.5 ATR and when the transaction reaches the TP it closes 50% of the operation and the other 50% applies the trailing stop moving the SL to 50% of the opening price and the TP. The system has 3 different strategies to open purchase and sale operations each one separates them with a different group number and the general magic number places it at 0, I think it is done so that it works as I want. The TF in which this system works is daily.
My platform:MT4
-
Trailing stop block should be exposed directly under tick for best performance.
-
@vish first, many thanks for answering
with respect to the suggestion I understand, but if I do so the trailing stop would work for each operation and I want it to only apply to 50% of the operation that remains open when it arrives at the original TP. If I do not explain myself well please tell me since English is not my first language. Tell me if I am wrong in my interpretation of your suggestion -
Maybe you can have a condition block before connecting the trailing block that filters the 50% trades. Condition may filter based on lot size or anything else.