(symbol: string, quantity: number, params: Dict = {})
| 5295 | } |
| 5296 | |
| 5297 | async deliveryMarketBuy(symbol: string, quantity: number, params: Dict = {}) { |
| 5298 | return await this.deliveryOrder('MARKET', 'BUY', symbol, quantity, undefined, params); |
| 5299 | } |
| 5300 | |
| 5301 | async deliveryMarketSell(symbol: string, quantity: number, params: Dict = {}) { |
| 5302 | return await this.deliveryOrder('MARKET', 'SELL', symbol, quantity, undefined, params); |
nothing calls this directly
no test coverage detected