Optimization statement

I run a fairly large program on EOD data, consequently I have many optimize() statements

Currently, when I want to optimaze a particular variable or two, I manually comment out all other optimize() statements.

Is there an alternate way of selecting which optimize statements to select?

Thanks
Ara

You might control that from parameters window

if( ParamToggle("Optimize X", "No|Yes" ) ) x = Optimize("x", 1, 1, 100, 1 );