MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / deliverySell

Method deliverySell

src/node-binance-api.ts:5293–5295  ·  view source on GitHub ↗
(symbol: string, quantity: number, price: number, params: Dict = {})

Source from the content-addressed store, hash-verified

5291 }
5292
5293 async deliverySell(symbol: string, quantity: number, price: number, params: Dict = {}) {
5294 return await this.deliveryOrder('LIMIT', 'SELL', symbol, quantity, price, params);
5295 }
5296
5297 async deliveryMarketBuy(symbol: string, quantity: number, params: Dict = {}) {
5298 return await this.deliveryOrder('MARKET', 'BUY', symbol, quantity, undefined, params);

Callers

nothing calls this directly

Calls 1

deliveryOrderMethod · 0.95

Tested by

no test coverage detected