PureBytes Links
Trading Reference Links
|
What am I missing? Why can't you just have 8 inputs that toggle each
setup on or off with input values of 0 or 1. Then use the optimize
function on all 8, testing from values of 0 to 1.
input: setup1(0), setup2(0),...... setup8(0);
if setup1 = 1 then {run setup1 code};
if setup2 = 1 then {run setup2 code};
........
if setup8 = 1 then {run setup8 code};
--
Dennis
|