binance-api-node icon indicating copy to clipboard operation
binance-api-node copied to clipboard

exchangeInfo for SPOT missing filter 'NOTIONAL' and 'MIN_NOTIONAL' is incorrect

Open BeYourCyber opened this issue 9 months ago • 0 comments

  1. missing NOTIONAL filter on SPOT (exchangeInfo) The structure of NOTIONAL refer to https://developers.binance.com/docs/binance-spot-api-docs/filters#notional Look like this { "filterType": "NOTIONAL", "minNotional": "10.00000000", "applyMinToMarket": false, "maxNotional": "10000.00000000", "applyMaxToMarket": false, "avgPriceMins": 5 }

  2. 'MIN_NOTIONAL' have incorrect data type index.d.ts export interface SymbolMinNotionalFilter { filterType: SymbolFilterType.MIN_NOTIONAL notional: string } But refer to https://developers.binance.com/docs/binance-spot-api-docs/filters#min_notional It should have { "filterType": "MIN_NOTIONAL", "minNotional": "0.00100000", "applyToMarket": true, "avgPriceMins": 5 }

Thank you.

BeYourCyber avatar Feb 24 '25 03:02 BeYourCyber