is it possible to set...

 
Hi all, is it possible to set 2 or more different color and shape level lines in Stochastic for example? let say like this:
   IndicatorSetDouble(INDICATOR_LEVELVALUE,0,40); 
   IndicatorSetInteger(INDICATOR_LEVELCOLOR,0,clrBlue);
   IndicatorSetInteger(INDICATOR_LEVELSTYLE,0,STYLE_DASHDOTDOT);
   
   IndicatorSetDouble(INDICATOR_LEVELVALUE,1,-40); 
   IndicatorSetInteger(INDICATOR_LEVELCOLOR,0,clrRed);
   IndicatorSetInteger(INDICATOR_LEVELSTYLE,0,STYLE_DOT);
or by default it will only take one parameter in this case the second one??