Please include the “weightedAveragePrice”-value within the response for:
- …/binance/binance-spot-api-docs/blob/master/rest-api.md#percent_price (and #min_notional)
For example, instead of
{
"filterType": "PERCENT_PRICE",
"multiplierUp": "1.3000",
"multiplierDown": "0.7000",
"avgPriceMins": 5
}
this should be returned:
{
"filterType": "PERCENT_PRICE",
"multiplierUp": "1.3000",
"multiplierDown": "0.7000",
"weightedAveragePrice": "301110.932"
}
There is very little benefit and very inconvenient for the user to work with “avgPriceMins”. As already described in percent_price rule and weightedAveragePrice, it’s not trivial for the user to derive the
weightedAveragePrice from avgPriceMins.
So please return “weightedAveragePrice” directly instead of “avgPriceMins” within the response for “percent_price” and “min_notional”.