There is no -addplot()- option for twoway. You just need to add the extra plots, separating each with parentheses or double pipes.
Code:
twoway area Shortvolume Day if inrange(Firm, 1, 9), color(gray) || line FivesShort Day if inrange(firm, 1, 9), by(Firm) ...
Comment