APIError(code=-1013): Filter failure: PRICE_FILTER
我无法弄清楚错误是什么。我正在发送此请求:
order = self.client.create_order(
symbol=symbol,
side=side,
timeInForce=TIME_IN_FORCE_GTC,
type=order_type,
quantity=quantity,
price=price
)
Run Code Online (Sandbox Code Playgroud)
它通常有效,但偶尔我会收到前面提到的错误。
我的情况是数量和价格:
quantity = 0.0003
price= 40022.4
Run Code Online (Sandbox Code Playgroud)
有任何想法吗?