Открываю стоп заявку таким образом
ord=new Order
{
Type = OrderTypes.Conditional,
Volume = this.Volume.Text.To<int>(),
Price = this.Price.Text.To<double>(),
Security = this.Security,
Direction = OrderDirections.Buy,
StopCondition = new QuikStopCondition
{
StopPrice = this.StopPrice.Text.To<double>(),
},
};
А как в коде получить значение этой самой StopPrice у заданного
ордера?
Пробовал вот так: double price=ord.StopCondition.StopPrice; - не
получается..