- If I place a SetStopLoss() in the Initialize() method, does that preclude me from dynamically modifying it later in the OnBarUpdate() method?
- - If I use a signal name when I place an entry order do I need to use a fromEntrySignal in my SetStopLoss() statement even if I want it to apply to any open position?
- - In the case of a long position that has made significant profit, is it possible to modify the SetStopLoss() price to be above the Position.AvgPrice yet below the current Close[0]?
- - When resetting the stop loss level on a reversing trade, does it matter in what order the SetStopLoss() is listed in relation to a reversing entry (or exit and entry) methods to properly reset the built-in stop loss for the new entry?
- - Looks like the orders generated by the built-in function abide by the same Day/GTC rules that are set for the strategy. Please confirm.
- - Are there any circumstances by which SetStopLoss() levels, once modified from their original values, would no longer allow any additional modifications, fail to generate orders, or submit orders that would not remain active until modified again? I understand SetStopLoss() methods require only one call unlike entry() and exit() methods that must be renewed with each new bar.
- - When using the TraceOrder option, should I expect to see an entry in the output window for each time SetStopLoss() is called including the stop price listed?
Perhaps answers to these questions would be useful in the help facility. Thanks.
Regards,
Whitmark

Comment