如何禁用 Binance Spot API PRICE_FILTER?
How to disable the Binance Spot API PRICE_FILTER?
我正在与 Python 一起开发 Binance SPOT API。关于它在文档 here:
中所说的资产的 Symbol/Price 过滤器
The PRICE_FILTER defines the price rules for a symbol. There are 3 parts:
minPrice defines the minimum price/stopPrice allowed; disabled on minPrice == 0.
maxPrice defines the maximum price/stopPrice allowed; disabled on maxPrice == 0.
tickSize defines the intervals that a price/stop...; disabled on tickSize == 0.
Any of the above variables can be set to 0, which disables that rule in the price filter.
我没有找到有关如何将这些过滤器设置为“0”以禁用的信息。有人知道怎么做吗?
最好!
我认为他们的意思是他们可以在 api 响应中为 0,但你不能自己设置它,因为你只是他们 api 的消费者。因此,如果它们不是 0,则必须遵循这些规则以确保不会出错。
https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#filters
我正在与 Python 一起开发 Binance SPOT API。关于它在文档 here:
中所说的资产的 Symbol/Price 过滤器The PRICE_FILTER defines the price rules for a symbol. There are 3 parts:
minPrice defines the minimum price/stopPrice allowed; disabled on minPrice == 0. maxPrice defines the maximum price/stopPrice allowed; disabled on maxPrice == 0. tickSize defines the intervals that a price/stop...; disabled on tickSize == 0.
Any of the above variables can be set to 0, which disables that rule in the price filter.
我没有找到有关如何将这些过滤器设置为“0”以禁用的信息。有人知道怎么做吗?
最好!
我认为他们的意思是他们可以在 api 响应中为 0,但你不能自己设置它,因为你只是他们 api 的消费者。因此,如果它们不是 0,则必须遵循这些规则以确保不会出错。
https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#filters