(symbol: string, quantity: number, price: number, params: Dict = {})
| 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); |
nothing calls this directly
no test coverage detected