Please find attached a concept script "TestExitManagerOnOrderUpdate".
The script appears to work on Playback101 State.Historical.
It appears to fail at State.Realtime.
Any guidance is appreciated.
Alternatively, please advise why going down this path is simply ill-advised.


)
Print is not within the scope of the ExitManager class. Why? Print comes from the 'Strategy' class, but your separate ExitManager class is not part of that inheritance hierarchy and doesn't get to call Print() for free. To overcome that, you'd have to pass 'this' into your ExitManager constructor and do a couple extra sophisticated tricks to call Print() from inside your ExitManager objects.



Comment