does any one know how to discretely clear the output tab 2, im drawing a blank lol, i think i did in one of my scripts for a customer years ago, but cant remember?
I know you can clear the output window with ClearOutputWindow().
As for what to do about Output tab 2…
Apparently the default is to whatever PrintTo is set to, which is an enum defaulted as PrintTo.OutputTab1.
see https://ninjatrader.com/support/helpGuides/nt8/NT%20HelpGuide%20English.html?output.htm
// Clear Output1
PrintTo = PrintTo.OutputTab1;
ClearOutputWindow();
// Clear Output2
PrintTo = PrintTo.OutputTab2;
ClearOutputWindow();