I get The relationship of the prices for the orders is not correct. Error, no mater what i do.

stopLimitTimeInForce=GTC
&symbol=ETCUSDT
&side=SELL
&stopLimitPrice=67.647
&price=66.964
&stopPrice=66.642
&recvWindow=5000
&quantity=0.194
&timestamp=1622578580734

even if for a sell OCO , StopLimit > lastPrice > Limit

I always get
code: -2010,
msg: ‘The relationship of the prices for the orders is not correct.’

Hi. “The relationship of the prices for the orders is not correct.” means that the OCO breaks the price rules below:
SELL Orders: Limit Price > Last Price > Stop Price
BUY Orders: Limit Price < Last Price < Stop Price

When you place the OCO, you have to pair stop price and stop limit price together. Stop price is used to trigger the order so that you can buy/ sell the asset at the stop limit price. In this case, the price rule for sell order can be shown as price > last price > stop limit price >= stop price if we use the request parameters to rewrite it. Hence the request you sent failed.