I got a notice saying “Unable to compute order quantity of DASHUSDT. Reason: The cash model does not allow shorting. Returning null.” when I live trade a pair trading strategy using QuantConnect and Binance margin sub-account.

Here is my code for the open

SetHoldings(Config.Symbol1, -0.3m);  // Short symbol1 with 0.3 * portfolio value
SetHoldings(Config.Symbol2, 0.3m);   // Long symbol2 with 0.3 * portfolio value

What should I do to short a crypto spot in Quantconnect?