(symbol: string, quantity: number, price: number, params: Dict = {})
| 5287 | } |
| 5288 | |
| 5289 | async deliveryBuy(symbol: string, quantity: number, price: number, params: Dict = {}) { |
| 5290 | return await this.deliveryOrder('LIMIT', 'BUY', symbol, quantity, price, params); |
| 5291 | } |
| 5292 | |
| 5293 | async deliverySell(symbol: string, quantity: number, price: number, params: Dict = {}) { |
| 5294 | return await this.deliveryOrder('LIMIT', 'SELL', symbol, quantity, price, params); |
nothing calls this directly
no test coverage detected