If I backtest a study that takes a string parameter e.g.
var fp5 = new FunctionParameter("nParm5", FunctionParameter.STRING);
and then re-backtest on the same chart using a different study that takes a number parameter e.g.
var fp5 = new FunctionParameter("nParm5", FunctionParameter.NUMBER);
I get the string options appearing in the backtest parameter box from the first study.
Apologies for not providing an example but a little short on time.
var fp5 = new FunctionParameter("nParm5", FunctionParameter.STRING);
and then re-backtest on the same chart using a different study that takes a number parameter e.g.
var fp5 = new FunctionParameter("nParm5", FunctionParameter.NUMBER);
I get the string options appearing in the backtest parameter box from the first study.
Apologies for not providing an example but a little short on time.
Comment