ReferencesAdd OnAccount ClassChange()Ask a question|Copy page|View as Markdown|More actionsDefinition Changes specified Order object(s). Syntax Change(IEnumerable\<order\> orders) Parameters ParameterDescriptionordersOrder(s) to change Examples // Example codeOrder stopOrder;stopOrder.StopPriceChanged = stopOrder.StopPrice - 4 * stopOrder.Instrument.MasterInstrument.TickSize;private void OnExecutionUpdate(object sender, ExecutionEventArgs e){ // Change the stop order if an execution results in a long position if(e.MarketPosition == MarketPosition.Long) myAccount.Change(new[] { stopOrder });}