I need a hook which will allow me to run some code when a custom strategy is started. At the moment I've overridden the Initialize() method and placed my setup code in there. However, I've got all kinds of problems (such as TickSize not being accessible) because that method is called any time an instance strategy is created. Obviously this can happen before any instrument has been selected.
There must be some way for me to determine when the strategy has started and pick up info such as the TickSize.
Thanks.

Comment