I am not the developer of the VST add-on.
But as far as I can see,
you can first create 'unchanneled' editors for your VSTs you want to use (just using 0 as the stream channel):
editor1a = BASS_VST_ChannelSetDSP(0, "sth1a.dll", ...);
BASS_VST_SetScope(editor1a, 123);
BASS_VST_EmbedEditor(editor1a, ...);
editor1b = BASS_VST_ChannelSetDSP(0, "sth1b.dll", ...);
BASS_VST_SetScope(editor1b, 123);
BASS_VST_EmbedEditor(editor1b, ...);
This enables you to open/close/edit all VST parameters at any time, independent from any real BASS/ASIO stream.
When you now want to create your real physical output stream, you of course need to setup the VST DSPs again for that real stream channel and then copy the params of the previous VSTs to the 'real' once:
editor2a = BASS_VST_ChannelSetDSP(stream, "sth1a.dll", ...);
BASS_VST_SetScope(editor2a, 123);
BASS_VST_SetParamCopyParams(editor1a, editor2a);
editor2b = BASS_VST_ChannelSetDSP(stream, "sth1b.dll", ...);
BASS_VST_SetScope(editor2b, 123);
BASS_VST_SetParamCopyParams(editor2a, editor2b);
Once this is done, you still can open/close/edit all parameters on the first VST editors...so here you should not open the editors on the second VSTs.