I am trying to create an order from the indicator
Order ord=a.CreateOrder(Instrument,OrderAction.Buy,OrderType.Market,OrderEntry.Manual,TimeInForce.Day,1,0,0,"","",DateTime.MaxValue,null);
Order ord=a.CreateOrder(Instrument,OrderAction.Buy,OrderType.StopMarket,OrderEntry.Manual,TimeInForce.Day,1,0,stop_price,"","",DateTime.MaxValue,null);
I don't use OCO.
Is this normal behavior? Or to work with limit and stop orders from the indicator I need to make a license upgrade?

Comment