(fields: Iterator<string>)
| 217 | } |
| 218 | |
| 219 | decodeBoxOrderParams(fields: Iterator<string>): void { |
| 220 | this.order.startingPrice = decodeFloat(fields, SHOW_UNSET) |
| 221 | this.order.stockRefPrice = decodeFloat(fields, SHOW_UNSET) |
| 222 | this.order.delta = decodeFloat(fields, SHOW_UNSET) |
| 223 | } |
| 224 | |
| 225 | decodePegToStkOrVolOrderParams(fields: Iterator<string>): void { |
| 226 | this.order.stockRangeLower = decodeFloat(fields, SHOW_UNSET) |
no test coverage detected