I have two questions.
I have implemented a strategy which builds up a position in the market with maximal 5 entries in the same direction. I have set stoploss in the initialize procedure:
SetStopLoss(CalculationMode.Percent,.02);
If I understand right as I can see from tracking the trades, the stop loss is set individually for each entry and therefore executed per entry.
Question 1:
Is there a way I can see whether a stop loss is executed? I want to know, because if this happens I do not execute within next days another buy order (produced by my signal).
Question 2:
Can I set a stop loss which is relative to the entry price of the whole position? Meaning that if I have for example a position size of 5, the stop loss of 2% is set relative to the average entry price?
thanks for your feedback
Andre

Comment