Let's imagine I have used the SetStopLoss() method at some stage to enter a stop loss level.
Later, I want to retrieve the price of that stop loss for some task such as the idea illustrated in the following pseudo code:
if ( market position is long )
if ( current market price is greater than (current stop loss level + 50 ticks) )
then set stop loss 25 ticks higher than it is now.
Performing this would require knowledge of the value of the currently active stop loss order. How can I get it?
cheers / Ben

Comment