For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Optstrategy for tuples of parameters
-
I'm using optstrategy for 2 parameters, say a and b, and I want to run it for values
{(a=2,b=4),(a=4,b=8),(a=6,b=12),(a=8,b=12)}, instead of running for all combinations of a and b, how can I do that? -
Probably the following post may provide some clues: https://community.backtrader.com/topic/2227/optimization-sequence-multiple-combination-of-parameters
-
@vladisld Thank You for the help!