Yes the strategy will need to be recoded to run with every tick coming in in mind such as using variable flags, or you will need to unlock to code and move the order so that it submits orders only on the first tick of the bar. Essentially allowing you run with COBC=False and then allowing code to run in COBC=True mode inside the strategy.
if (FirstTickOfBar)
{
// Do the following
}
Also, you can check the box in the strategy wizard or simply when you start the trategy live you set it their in the parameters for when you set it also.
Let me know if I can be of further assistance.

Comment