(fields: Iterator<string>)
| 300 | } |
| 301 | |
| 302 | decodeTrailParams(fields: Iterator<string>): void { |
| 303 | this.order.trailStopPrice = decodeDecimal(fields) |
| 304 | if (this.version >= 30) { |
| 305 | this.order.trailingPercent = decodeDecimal(fields) |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | decodeBasisPoints(fields: Iterator<string>): void { |
| 310 | this.order.basisPoints = decodeFloat(fields, SHOW_UNSET) |
no test coverage detected