I have a strategy with 4 optimizable parameters, and I have a list of instruments - forex pairs.
I have optimized each instrument individually so it has its own best values for the optimizable parameters, now I want to see what the accumulated results are for a backtest using all the instruments with their individually optimal parameter values.
Is this possible?
I am currently looking at the result of optimizing the complete llist of instruments, and I'm asking myself this:
(1) is NT optimizing the whole list of instruments to obtain an optimal value for the parameter across all instruments?
or
(2) is NT finding the optimal values for each parameter for each instrument, and then combining the results at the optimal parameter values, i.e with different values for a parameter on different instruments?
In fact I optimize the strategy once for long and again for short trades. I have a parameter where 1 means 'trade long only' and -1 means 'trade short only'. I intend to trade both at the same time - it's not either long or short.
Ideally I would be able to add each instrument to the list twice and apply the strategy with different optimizable parameters, and the 'long-short' parameter to tell the strategy if it's trading long or short.
Is that possible?

Comment