Skip to content
Prev 13792 / 15274 Next

need apply.paramset logging

Executing on minute data won't drive the speed of the path-dependent
rules loop, the total number of signals which need to be evaluated will,
or the inclusion of things like trailing stops.

You should be able to sort out which parameter combination is failing
from the print statements.  you should also be able to look at the audit
environment to see which portfolio you're expecting is missing.

Ultimately, this is a problem in your strategy specification...  You've
created an infeasible parameter combination.  You likely want to debug
what, specifically, is failing, rather than just skipping the failing
parameter set.

If you're determined to work with the combine funtion...

The .combine argument for foreach is described in the documentation for
foreach.  See ?foreach. 

The combine function in apply.paramset is inside the apply.paramset
function.  We could probably check for a user-supplied combine, or you
could modify the combine function inside apply.paramset yourself.
On Tue, 2016-03-22 at 15:45 +0100, Diego Peroni wrote: