Setting parameters in creator
After every settings page a parameter page will follow. Parameters page will always contain a parameter table where you can add the extra data that will be passed into the function along with adding setup functions. Along with this, dependant on what type of item the parameters are for, there will be extra settings like flatten and period.
Flattening is an advanced option for getting rid of a data structure your code isn't supposed to use. If you run your algo and look at the output and see data that looks like this:
"Times", "Price"
[2:00,2:01,2:02,2:03,2:05], [130,131,130,129,127]
"Times", "Price"
2:00, 130
2:01, 131
2:02, 130
2:03, 129
2:05, 127
TODO