Each entry is triggered by the same condition
for example : Close[1] < Open[1]
&& Close[0] < Open[0])
Now as the market moves in my favor I want to modify the stoploss orders
But I want different parameters for each order entered
for example : entry1 , stop will be set at breakeven if 10ticks in profit
entry2 , stop will be set at breakeven if 25ticks in profit
entry3 , stop will be a trailingstop at x-ticks
.....
I have been going though the sample strategies, but here I find that managing the stop orders is done by Position.AvgPrice
in this case this will not give the right results as each entry has a different fill price and different parameters attached
Could you please point me where to look, in order to get this done
Thank you
Nico

Comment