AtmStrategyCreate(OrderAction.Buy, OrderType.StopLimit, 101.05, 101.01...
Is there a way to create something like a LimitStop order? Like:
AtmStrategyCreate(OrderAction.Buy, OrderType.StopLimit, 101.01, 101.05...
...where when price hits 101.05, it then submits a buy limit order at 101.01?
I know I can just monitor price in my code and then submit a limit order when price hits 101.05 -- but just wondered if I'm missing something and there's a way to do both orders in one step.


Comment