Say I want all Prints for a strategy to go to Output2.
If I follow the example code for PrintTo
if (State == State.SetDefaults)
{
Name = "Sample PrintTo Indicator #2";
Description = "@Used to Print updates to Output 2";
//Set this scripts Print() calls to the second output tab
PrintTo = PrintTo.OutputTab2;
}
General problem:
It seems that something in B12 (running between State.SetDefaults and State.SetConfigure) is ignoring a number of settings that might be made in State.SetDefaults (according to current documentation) and setting them to what it thinks should be the default values.
An example I pointed out previously was ConnectionLossHandling.KeepRunning.
I suspect there might be a long list, so I am not planning on reporting any more of these.

Comment