We added a “Log” tab to the Seetu user interface.
Currently, it is useful if you have any of following commands in your Seetu code:
SetOption(“Symbols”, “MSFT,INTC,AAPL” );
SetOption(“ApplyFromTime”, “2014-01-02”);
SetOption(“ApplyToTime”, “2015-01-02”);
SetOption(“ApplyToRecentDays”, 100);
SetOption(“ApplyToRecentBars”, 100);
These commands are needed if you want to run a strategy on the Collective2 side.
It is a way how to tell the strategy what symbols and time ranges to use without the Seetu user interface.
But if you will run such strategy in the user interface and you select a different set of symbols or different time ranges, it could be very confusing: the strategy will not use them because the parameters included in the code have a higher priority.
To help to solve this confusion, we added the “Log”. So if your strategy will behave “strangely”, try to look at the Log.
Currently, it shows the above SetOption parameters and a few of other messages. It will include more messages over time.
A remark: You can use above commands in any strategy in fact.
For example: You can use
SetOption(“Symbols”, “MSFT,INTC,AAPL” );
and you will not need to select symbols in the user interface.
The same for time ranges.