Hello,
Should I wanted to have my own EA only change the Stop Loss worth and leave the other values as they were, Can my OrderModify() statement look something like this? This is to get a open OP_BUY or open OP_SELL, maybe not a pending order, I'm asking about.

OrderModify( OrderTicket(), NULL, NewStopLossValue, NULL, NULL, CLR_NONE);

Of course I know I use this function in concert with OrderSelect()

I'm just trying to pin down the way to change just the SL and leave all else in the open order independently.

Thanks in advance for the help.