You would just need to use exactly what you have now, only changing the overloads you are using in the Enter statements.
For example, you currently have this:
EnterShort(voladjust1, "SP STOCKS U-H Short");
Whichever stock this is for, you would need to specify its index using the altranet overload set I had mentioned before or:
EnterShort(barsInProgressIndex, voladjust1, "SP STOCKS U-H Short");
You would replace barsInProgressIndex with the index number for the instrument you are trying to submit the order to.
Here is the overload set again for reference:
EnterShort(int barsInProgressIndex, int quantity, string signalName)
Looking at this, when you call EnterShort() the items inside the ( ) would need to match what is listed or the index of the instrument, the quantity and then the signal name.
I look forward to being of further assistance.

Comment