Would it be possible to provide the sample strategy "SampleOnOrderUpdate" with all appropriate changes for use in NT7?
o Ex: There can be discrepancies between IExecution.Order.Filled and IOrder.Filled as accessed during order placement
IOrder objects are now unique throughout the lifetime of a strategy
o Do NOT hold onto .Token values since they will change as the strategy goes from historical to live
o To check for equality you can directly compare IOrders. Example:
if (entryOrder == order)
o IOrder.Action has been renamed to IOrder.OrderAction
Shannon

Comment