(fields: Iterator<string>)
| 573 | } |
| 574 | |
| 575 | decodeCashQty(fields: Iterator<string>): void { |
| 576 | if (this.serverVersion >= MIN_SERVER_VER_CASH_QTY) { |
| 577 | this.order.cashQty = decodeDecimal(fields) |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | decodeDontUseAutoPriceForHedge(fields: Iterator<string>): void { |
| 582 | if (this.serverVersion >= MIN_SERVER_VER_AUTO_PRICE_FOR_HEDGE) { |
no test coverage detected