if (entryOrder != null && (entryOrder.Token == execution.Order.Token) ...
... is it now possible to use:
if (entryOrder != null && (entryOrder == execution.Order) ...
This question is based on the ability to now directly compare entryOrder with order:
if (entryOrder == order)
As a matter of fact, can all references to token now replaced with a simpler construct?
Thanks,
Mole

Comment