Once ur in the analysis window, click onto the 'parameters' and then u can change the 'Parameters- BBO' to any numbers u like.. ..Its easy, even a dumbass like me can do it m8..!
No, that can't adjust the top band to one value and the bottom band to a different value - both bands are set to the same value in the parameters window.
You'd have to write some code to do it. Something like:
Bot = BBandBot(C, 100, 1);
Top = BBandTop(C, 100, 3);
Plot(Bot, "LowerBand", colorRed);
Plot(Top, "UpperBand", colorRed);
Plot(MA(C,100), "CentralMA", colorBlue);